What should be the last unnecessary <iostream>s in the library.
[oota-llvm.git] / lib / Target / IA64 / IA64AsmPrinter.cpp
index b2f0f530975167bcfc73f3e24038f3e42bb5946a..6915cbc5d95f8ae3cd4f171de58fcfee54bb211a 100644 (file)
@@ -26,7 +26,6 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Support/Mangler.h"
 #include "llvm/ADT/Statistic.h"
-#include <iostream>
 using namespace llvm;
 
 namespace {
@@ -308,13 +307,13 @@ bool IA64AsmPrinter::doFinalization(Module &M) {
             SwitchToDataSection(C->isNullValue() ? ".bss" : ".data", I);
             break;
           case GlobalValue::GhostLinkage:
-            std::cerr << "GhostLinkage cannot appear in IA64AsmPrinter!\n";
+            cerr << "GhostLinkage cannot appear in IA64AsmPrinter!\n";
             abort();
           case GlobalValue::DLLImportLinkage:
-            std::cerr << "DLLImport linkage is not supported by this target!\n";
+            cerr << "DLLImport linkage is not supported by this target!\n";
             abort();
           case GlobalValue::DLLExportLinkage:
-            std::cerr << "DLLExport linkage is not supported by this target!\n";
+            cerr << "DLLExport linkage is not supported by this target!\n";
             abort();
           default:
             assert(0 && "Unknown linkage type!");