summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2017-11-14 23:13:38 +0000
committerDavide Italiano <davide@freebsd.org>2017-11-14 23:13:38 +0000
commit1380cb80550b3fcb174c7d8267f2b530c8802e6c (patch)
tree1c151c9e1d5af11d3c1877cc04b323b03b3c9cea /llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
parent4a5354fd3665d59353826590fdf036dcc298b911 (diff)
downloadbcm5719-llvm-1380cb80550b3fcb174c7d8267f2b530c8802e6c.tar.gz
bcm5719-llvm-1380cb80550b3fcb174c7d8267f2b530c8802e6c.zip
[EntryExitInstrumenter] Placate GCC, the semicolon is redundant. NFCI.
llvm-svn: 318217
Diffstat (limited to 'llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp b/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
index ba6f67e15ca..bdcd3d4cc04 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();
OpenPOWER on IntegriCloud