diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-12-17 11:15:53 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-12-17 11:15:53 +0000 |
commit | e33ce528da43c405e3dde456dd5ad07443dd7df8 (patch) | |
tree | 535f5c71f0ff37afdf226dc1b1ce96d2f8eab664 /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp | |
parent | 1e48353346bf1d7863f723d002165f87f2f2c5b1 (diff) | |
download | bcm5719-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.cpp | 2 |
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. /// |