From 1380cb80550b3fcb174c7d8267f2b530c8802e6c Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Tue, 14 Nov 2017 23:13:38 +0000 Subject: [PATCH] [EntryExitInstrumenter] Placate GCC, the semicolon is redundant. NFCI. llvm-svn: 318217 --- llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp b/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp index ba6f67e..bdcd3d4 100644 --- a/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp +++ b/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp @@ -124,12 +124,11 @@ char PostInlineEntryExitInstrumenter::ID = 0; INITIALIZE_PASS( EntryExitInstrumenter, "ee-instrument", "Instrument function entry/exit with calls to e.g. mcount() (pre inlining)", - false, false); - + false, false) INITIALIZE_PASS(PostInlineEntryExitInstrumenter, "post-inline-ee-instrument", "Instrument function entry/exit with calls to e.g. mcount() " "(post inlining)", - false, false); + false, false) FunctionPass *llvm::createEntryExitInstrumenterPass() { return new EntryExitInstrumenter(); -- 2.7.4