1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Fixed so that it dereferences the ostream pointer.

llvm-svn: 32640
This commit is contained in:
Bill Wendling 2006-12-17 11:15:53 +00:00
parent 8cd0977aad
commit 34f4c12ae7

View File

@ -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.
///