mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
[asan] fix lint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163205 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3d5e161fe4
commit
7dadac65d3
@ -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