[EntryExitInstrumenter] Placate GCC, the semicolon is redundant. NFCI.

llvm-svn: 318217
This commit is contained in:
Davide Italiano 2017-11-14 23:13:38 +00:00
parent 4a5354fd36
commit 1380cb8055
1 changed files with 2 additions and 3 deletions

View File

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