aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-14 20:32:10 +0000
committerChris Lattner <sabre@nondot.org>2003-01-14 20:32:10 +0000
commit64317fce27e4db80e3a341ffb0cbaad7a1060b1f (patch)
tree27b0681b12965e75ed0684ca0e6d00748982c4e1
parent6a490cedb5c07be90812dfa57a5346c2ddf5d415 (diff)
Minor cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5266 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9PreSelection.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Target/SparcV9/SparcV9PreSelection.cpp b/lib/Target/SparcV9/SparcV9PreSelection.cpp
index 012956220c..2c3dcf2fe3 100644
--- a/lib/Target/SparcV9/SparcV9PreSelection.cpp
+++ b/lib/Target/SparcV9/SparcV9PreSelection.cpp
@@ -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 @@ namespace {
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;
}