summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-12-17 11:15:53 +0000
committerBill Wendling <isanbard@gmail.com>2006-12-17 11:15:53 +0000
commite33ce528da43c405e3dde456dd5ad07443dd7df8 (patch)
tree535f5c71f0ff37afdf226dc1b1ce96d2f8eab664 /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
parent1e48353346bf1d7863f723d002165f87f2f2c5b1 (diff)
downloadbcm5719-llvm-e33ce528da43c405e3dde456dd5ad07443dd7df8.tar.gz
bcm5719-llvm-e33ce528da43c405e3dde456dd5ad07443dd7df8.zip
Fixed so that it dereferences the ostream pointer.
llvm-svn: 32640
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
index 0b10a22fc44..d5b8d047739 100644
--- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
@@ -487,7 +487,7 @@ private:
/// printNI - Print node info.
///
void printNI(std::ostream &O, NodeInfo *NI) const;
- void printNI(std::ostream *O, NodeInfo *NI) const { if (O) printNI(O, NI); }
+ void printNI(std::ostream *O, NodeInfo *NI) const { if (O) printNI(*O, NI); }
/// printChanges - Hilight changes in order caused by scheduling.
///
OpenPOWER on IntegriCloud