diff options
author | Clement Courbet <courbet@google.com> | 2019-02-14 12:10:49 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2019-02-14 12:10:49 +0000 |
commit | c6e768f0ee3980fee0eadb4c0a5710c3b3c1fcad (patch) | |
tree | 56a6870dafaf24bce7b285933d6fe651f45aa289 | |
parent | 8c3343dfd546ee7e11ff158fbd989e83ac9165a9 (diff) | |
download | bcm5719-llvm-c6e768f0ee3980fee0eadb4c0a5710c3b3c1fcad.tar.gz bcm5719-llvm-c6e768f0ee3980fee0eadb4c0a5710c3b3c1fcad.zip |
[Instrumentation][NFC] Fix warning.
lib/Transforms/Instrumentation/AddressSanitizer.cpp:1173:29: warning: extra ‘;’ [-Wpedantic]
llvm-svn: 354024
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 5a3f6a12bf0..ec96d7b4615 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/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; |