diff options
author | Davide Italiano <davide@freebsd.org> | 2017-11-14 23:13:38 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-11-14 23:13:38 +0000 |
commit | 1380cb80550b3fcb174c7d8267f2b530c8802e6c (patch) | |
tree | 1c151c9e1d5af11d3c1877cc04b323b03b3c9cea /llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp | |
parent | 4a5354fd3665d59353826590fdf036dcc298b911 (diff) | |
download | bcm5719-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.cpp | 5 |
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(); |