[llvm-commits] CVS: llvm/lib/CodeGen/PreOpts/PreSelection.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Jan 14 14:33:01 PST 2003


Changes in directory llvm/lib/CodeGen/PreOpts:

PreSelection.cpp updated: 1.5 -> 1.6

---
Log message:

Minor cleanups


---
Diffs of the changes:

Index: llvm/lib/CodeGen/PreOpts/PreSelection.cpp
diff -u llvm/lib/CodeGen/PreOpts/PreSelection.cpp:1.5 llvm/lib/CodeGen/PreOpts/PreSelection.cpp:1.6
--- llvm/lib/CodeGen/PreOpts/PreSelection.cpp:1.5	Sun Oct 27 13:09:51 2002
+++ llvm/lib/CodeGen/PreOpts/PreSelection.cpp	Tue Jan 14 14:32:10 2003
@@ -20,11 +20,8 @@
 #include "llvm/iOther.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Pass.h"
-#include "llvm/Annotation.h"
 #include "Support/CommandLine.h"
-#include "Support/NonCopyable.h"
 #include <algorithm>
-using namespace std;
 
 namespace {
   //===--------------------------------------------------------------------===//
@@ -135,8 +132,8 @@
 
     bool doFinalization(Function &F) {
       if (PreSelectDebugLevel >= PreSelect_PrintOutput)
-        cerr << "\n\n*** LLVM code after pre-selection for function "
-             << F.getName() << ":\n\n" << F;
+        std::cerr << "\n\n*** LLVM code after pre-selection for function "
+                  << F.getName() << ":\n\n" << F;
       return false;
     }
 





More information about the llvm-commits mailing list