forked from OSchip/llvm-project
Avoid an unused variable warning when assertions are off
Patch by Mike Edwards. Thanks! llvm-svn: 232015
This commit is contained in:
parent
234a1ec404
commit
14d34ef050
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue