Avoid an unused variable warning when assertions are off

Patch by Mike Edwards. Thanks!

llvm-svn: 232015
This commit is contained in:
Justin Bogner 2015-03-12 06:50:54 +00:00
parent 234a1ec404
commit 14d34ef050
1 changed files with 1 additions and 0 deletions

View File

@ -274,6 +274,7 @@ public:
}
}
assert(binderFound && "dyld_stub_binder not found");
(void)binderFound;
// Sort targets by name, so stubs and lazy pointers are consistent
std::vector<const Atom *> targetsNeedingStubs;