diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Sparc/PreSelection.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/Target/Sparc/PreSelection.cpp b/llvm/lib/Target/Sparc/PreSelection.cpp index 012956220c6..2c3dcf2fe39 100644 --- a/llvm/lib/Target/Sparc/PreSelection.cpp +++ b/llvm/lib/Target/Sparc/PreSelection.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; } |