[Instrumentation][NFC] Fix warning.

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

llvm-svn: 354024
This commit is contained in:
Clement Courbet 2019-02-14 12:10:49 +00:00
parent 8c3343dfd5
commit c6e768f0ee
1 changed files with 1 additions and 1 deletions

View File

@ -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;