Minor cleanups

llvm-svn: 5266
This commit is contained in:
Chris Lattner 2003-01-14 20:32:10 +00:00
parent 02bb00104f
commit 7feefc7bb6

View File

@ -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;
}