[llvm-commits] CVS: llvm/lib/Target/IA64/IA64AsmPrinter.cpp IA64Bundling.cpp IA64ISelDAGToDAG.cpp IA64RegisterInfo.cpp

Bill Wendling isanbard at gmail.com
Thu Dec 7 14:22:19 PST 2006



Changes in directory llvm/lib/Target/IA64:

IA64AsmPrinter.cpp updated: 1.39 -> 1.40
IA64Bundling.cpp updated: 1.5 -> 1.6
IA64ISelDAGToDAG.cpp updated: 1.62 -> 1.63
IA64RegisterInfo.cpp updated: 1.24 -> 1.25
---
Log message:

What should be the last unnecessary <iostream>s in the library.


---
Diffs of the changes:  (+3 -8)

 IA64AsmPrinter.cpp   |    7 +++----
 IA64Bundling.cpp     |    1 -
 IA64ISelDAGToDAG.cpp |    1 -
 IA64RegisterInfo.cpp |    2 --
 4 files changed, 3 insertions(+), 8 deletions(-)


Index: llvm/lib/Target/IA64/IA64AsmPrinter.cpp
diff -u llvm/lib/Target/IA64/IA64AsmPrinter.cpp:1.39 llvm/lib/Target/IA64/IA64AsmPrinter.cpp:1.40
--- llvm/lib/Target/IA64/IA64AsmPrinter.cpp:1.39	Wed Dec  6 11:46:32 2006
+++ llvm/lib/Target/IA64/IA64AsmPrinter.cpp	Thu Dec  7 16:21:48 2006
@@ -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 @@
             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!");            


Index: llvm/lib/Target/IA64/IA64Bundling.cpp
diff -u llvm/lib/Target/IA64/IA64Bundling.cpp:1.5 llvm/lib/Target/IA64/IA64Bundling.cpp:1.6
--- llvm/lib/Target/IA64/IA64Bundling.cpp:1.5	Wed Dec  6 11:46:32 2006
+++ llvm/lib/Target/IA64/IA64Bundling.cpp	Thu Dec  7 16:21:48 2006
@@ -29,7 +29,6 @@
 #include "llvm/ADT/Statistic.h"
 #include "llvm/Support/Debug.h"
 #include <set>
-#include <iostream>
 using namespace llvm;
 
 namespace {


Index: llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp
diff -u llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp:1.62 llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp:1.63
--- llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp:1.62	Wed Dec  6 11:46:32 2006
+++ llvm/lib/Target/IA64/IA64ISelDAGToDAG.cpp	Thu Dec  7 16:21:48 2006
@@ -27,7 +27,6 @@
 #include "llvm/Intrinsics.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/MathExtras.h"
-#include <iostream>
 #include <queue>
 #include <set>
 using namespace llvm;


Index: llvm/lib/Target/IA64/IA64RegisterInfo.cpp
diff -u llvm/lib/Target/IA64/IA64RegisterInfo.cpp:1.24 llvm/lib/Target/IA64/IA64RegisterInfo.cpp:1.25
--- llvm/lib/Target/IA64/IA64RegisterInfo.cpp:1.24	Mon Nov 27 17:37:22 2006
+++ llvm/lib/Target/IA64/IA64RegisterInfo.cpp	Thu Dec  7 16:21:48 2006
@@ -29,10 +29,8 @@
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/ADT/STLExtras.h"
-#include <iostream>
 using namespace llvm;
 
-
 IA64RegisterInfo::IA64RegisterInfo(const TargetInstrInfo &tii)
   : IA64GenRegisterInfo(IA64::ADJUSTCALLSTACKDOWN, IA64::ADJUSTCALLSTACKUP),
     TII(tii) {}






More information about the llvm-commits mailing list