diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
commit | 30614856248d163eda712623c7577b5b1ff36e89 (patch) | |
tree | 925b639fe8f2122889ba261aa7f21efbbd790f4c /llvm/lib/VMCore/PrintModulePass.cpp | |
parent | 99311ba1a8d4356433518b773986276ee40799a1 (diff) | |
download | bcm5719-llvm-30614856248d163eda712623c7577b5b1ff36e89.tar.gz bcm5719-llvm-30614856248d163eda712623c7577b5b1ff36e89.zip |
Remove redundant inline keywords.
llvm-svn: 111192
Diffstat (limited to 'llvm/lib/VMCore/PrintModulePass.cpp')
-rw-r--r-- | llvm/lib/VMCore/PrintModulePass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/PrintModulePass.cpp b/llvm/lib/VMCore/PrintModulePass.cpp index 415309e52fa..2ee49d23596 100644 --- a/llvm/lib/VMCore/PrintModulePass.cpp +++ b/llvm/lib/VMCore/PrintModulePass.cpp @@ -58,7 +58,7 @@ namespace { PrintFunctionPass(const std::string &B, raw_ostream *o, bool DS) : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {} - inline ~PrintFunctionPass() { + ~PrintFunctionPass() { if (DeleteStream) delete Out; } |