From 1b27cb7159bcd0130cd1a98332b8952f4751867f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 8 May 2003 02:34:52 +0000 Subject: [PATCH] Remove using decl git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6023 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/InlineSimple.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp index a2dbf2ef4cf..5175bfd2c3a 100644 --- a/lib/Transforms/IPO/InlineSimple.cpp +++ b/lib/Transforms/IPO/InlineSimple.cpp @@ -25,7 +25,6 @@ #include 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();