[asan] fix lint
[oota-llvm.git] / lib / Transforms / Instrumentation / AddressSanitizer.cpp
index 33047293658c1c4d39cc496cb0fb0df3f28fdbf1..0775cf4a224ea8fe2b6f1f5903ffc608efe08507 100644 (file)
@@ -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(