From e33ce528da43c405e3dde456dd5ad07443dd7df8 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 17 Dec 2006 11:15:53 +0000 Subject: Fixed so that it dereferences the ostream pointer. llvm-svn: 32640 --- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib') 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. /// -- cgit v1.2.3