diff options
| author | Bill Wendling <isanbard@gmail.com> | 2006-12-07 20:28:15 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2006-12-07 20:28:15 +0000 |
| commit | 355fc5ad5008d57653e68dc248ac527e722c9b1e (patch) | |
| tree | d2d4e1aedde1e1b04104716c4bab102641ee331a /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | 22e978a736cb34291c15de07e5b31d395d08dee5 (diff) | |
| download | bcm5719-llvm-355fc5ad5008d57653e68dc248ac527e722c9b1e.tar.gz bcm5719-llvm-355fc5ad5008d57653e68dc248ac527e722c9b1e.zip | |
Removed more <iostream> includes
llvm-svn: 32321
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index c279982c006..5f92df3f2d5 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -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 @@ void SDNode::dump(const SelectionDAG *G) const { 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 |

