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:
parent
8cd0977aad
commit
34f4c12ae7
@ -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.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user