mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
[asan] fix lint
llvm-svn: 163205
This commit is contained in:
parent
6f46bb1705
commit
9330f23483
@ -645,7 +645,7 @@ bool AddressSanitizer::insertGlobalRedzones(Module &M) {
|
||||
// Determine whether this global should be poisoned in initialization.
|
||||
bool GlobalHasDynamicInitializer = HasDynamicInitializer(G);
|
||||
// Don't check initialization order if this global is blacklisted.
|
||||
GlobalHasDynamicInitializer &= ! BL->isInInit(*G);
|
||||
GlobalHasDynamicInitializer &= !BL->isInInit(*G);
|
||||
|
||||
StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
|
||||
Constant *NewInitializer = ConstantStruct::get(
|
||||
|
Loading…
Reference in New Issue
Block a user