From dae3d59a6b84adab4aca328bea2190dd72d28363 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Thu, 14 Feb 2019 12:10:49 +0000 Subject: [PATCH] [Instrumentation][NFC] Fix warning. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit lib/Transforms/Instrumentation/AddressSanitizer.cpp:1173:29: warning: extra ‘;’ [-Wpedantic] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@354024 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 5a3f6a12bf0..ec96d7b4615 100644 --- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -1170,7 +1170,7 @@ PreservedAnalyses ModuleAddressSanitizerPass::run(Module &M, 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; -- 2.40.0