Remove using decl
authorChris Lattner <sabre@nondot.org>
Thu, 8 May 2003 02:34:52 +0000 (02:34 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 8 May 2003 02:34:52 +0000 (02:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6023 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/InlineSimple.cpp

index a2dbf2ef4cf4f1a25ded8e30d4b4e319e79bfe67..5175bfd2c3ae255e371326b88c880b456876ea9a 100644 (file)
@@ -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();