forked from OSchip/llvm-project
[Instrumentation][NFC] Fix warning.
lib/Transforms/Instrumentation/AddressSanitizer.cpp:1173:29: warning: extra ‘;’ [-Wpedantic] llvm-svn: 354024
This commit is contained in:
parent
8c3343dfd5
commit
c6e768f0ee
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue