summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineSimple.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-08 02:34:52 +0000
committerChris Lattner <sabre@nondot.org>2003-05-08 02:34:52 +0000
commit1b27cb7159bcd0130cd1a98332b8952f4751867f (patch)
treeb422504eb5c475459a9b26e35e151b61b99ccc35 /lib/Transforms/IPO/InlineSimple.cpp
parent7b13f56c36eb7572e1053974e5487a5f1c3080aa (diff)
downloadllvm-1b27cb7159bcd0130cd1a98332b8952f4751867f.tar.gz
llvm-1b27cb7159bcd0130cd1a98332b8952f4751867f.tar.bz2
llvm-1b27cb7159bcd0130cd1a98332b8952f4751867f.tar.xz
Remove using decl
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--lib/Transforms/IPO/InlineSimple.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp
index a2dbf2ef4c..5175bfd2c3 100644
--- a/lib/Transforms/IPO/InlineSimple.cpp
+++ b/lib/Transforms/IPO/InlineSimple.cpp
@@ -25,7 +25,6 @@
#include <algorithm>
static Statistic<> NumInlined("inline", "Number of functions inlined");
-using std::cerr;
// InlineFunction - This function forcibly inlines the called function into the
// basic block of the caller. This returns false if it is not possible to
@@ -46,7 +45,7 @@ bool InlineFunction(CallInst *CI) {
if (CalledFunc == 0 || // Can't inline external function or indirect call!
CalledFunc->isExternal()) return false;
- //cerr << "Inlining " << CalledFunc->getName() << " into "
+ //std::cerr << "Inlining " << CalledFunc->getName() << " into "
// << CurrentMeth->getName() << "\n";
BasicBlock *OrigBB = CI->getParent();