[llvm] r354024 - [Instrumentation][NFC] Fix warning.

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 14 04:10:50 PST 2019


Author: courbet
Date: Thu Feb 14 04:10:49 2019
New Revision: 354024

URL: http://llvm.org/viewvc/llvm-project?rev=354024&view=rev
Log:
[Instrumentation][NFC] Fix warning.

lib/Transforms/Instrumentation/AddressSanitizer.cpp:1173:29: warning: extra ‘;’ [-Wpedantic]

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=354024&r1=354023&r2=354024&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Thu Feb 14 04:10:49 2019
@@ -1170,7 +1170,7 @@ PreservedAnalyses ModuleAddressSanitizer
 INITIALIZE_PASS(ASanGlobalsMetadataWrapperPass, "asan-globals-md",
                 "Read metadata to mark which globals should be instrumented "
                 "when running ASan.",
-                false, true);
+                false, true)
 
 char AddressSanitizerLegacyPass::ID = 0;
 




More information about the llvm-commits mailing list