[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Bill Wendling
isanbard at gmail.com
Thu Dec 7 12:28:40 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.376 -> 1.377
---
Log message:
Removed more <iostream> includes
---
Diffs of the changes: (+1 -2)
SelectionDAG.cpp | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.376 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.377
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.376 Thu Dec 7 14:04:42 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Thu Dec 7 14:28:15 2006
@@ -26,7 +26,6 @@
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
-#include <iostream>
#include <set>
#include <algorithm>
#include <cmath>
@@ -2887,7 +2886,7 @@
dyn_cast<GlobalAddressSDNode>(this)) {
int offset = GADN->getOffset();
cerr << "<";
- WriteAsOperand(std::cerr, GADN->getGlobal()) << ">";
+ WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
if (offset > 0)
cerr << " + " << offset;
else
More information about the llvm-commits
mailing list