[llvm-commits] CVS: llvm/lib/Transforms/IPO/FunctionInlining.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed May 7 21:36:01 PDT 2003
Changes in directory llvm/lib/Transforms/IPO:
FunctionInlining.cpp updated: 1.42 -> 1.43
---
Log message:
Remove using decl
---
Diffs of the changes:
Index: llvm/lib/Transforms/IPO/FunctionInlining.cpp
diff -u llvm/lib/Transforms/IPO/FunctionInlining.cpp:1.42 llvm/lib/Transforms/IPO/FunctionInlining.cpp:1.43
--- llvm/lib/Transforms/IPO/FunctionInlining.cpp:1.42 Wed Apr 23 11:37:38 2003
+++ llvm/lib/Transforms/IPO/FunctionInlining.cpp Wed May 7 21:34:52 2003
@@ -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 @@
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();
More information about the llvm-commits
mailing list