Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 7dadac6

Browse files
committed
[asan] fix lint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163205 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 3d5e161 commit 7dadac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Transforms/Instrumentation/AddressSanitizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ bool AddressSanitizer::insertGlobalRedzones(Module &M) {
645645
// Determine whether this global should be poisoned in initialization.
646646
bool GlobalHasDynamicInitializer = HasDynamicInitializer(G);
647647
// Don't check initialization order if this global is blacklisted.
648-
GlobalHasDynamicInitializer &= ! BL->isInInit(*G);
648+
GlobalHasDynamicInitializer &= !BL->isInInit(*G);
649649

650650
StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
651651
Constant *NewInitializer = ConstantStruct::get(

0 commit comments

Comments
 (0)