summaryrefslogtreecommitdiffstats
path: root/llvm/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
commitd9bd5a0443f273b8316cddb154177970ebf97c12 (patch)
tree338bc95ec631d7c44cda0a9e2c849ddd502b50b4 /llvm/lib/Transforms/IPO/InlineSimple.cpp
parentab7d1ab806f3f93330cbdfe9fd2c514afe5563d7 (diff)
downloadbcm5719-llvm-d9bd5a0443f273b8316cddb154177970ebf97c12.tar.gz
bcm5719-llvm-d9bd5a0443f273b8316cddb154177970ebf97c12.zip
Remove using decl
llvm-svn: 6023
Diffstat (limited to 'llvm/lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--llvm/lib/Transforms/IPO/InlineSimple.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/InlineSimple.cpp b/llvm/lib/Transforms/IPO/InlineSimple.cpp
index a2dbf2ef4cf..5175bfd2c3a 100644
--- a/llvm/lib/Transforms/IPO/InlineSimple.cpp
+++ b/llvm/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();
OpenPOWER on IntegriCloud