Skip to content
Snippets Groups Projects
Commit e33ce528 authored by Bill Wendling's avatar Bill Wendling
Browse files

Fixed so that it dereferences the ostream pointer.

llvm-svn: 32640
parent 1e483533
No related branches found
No related tags found
No related merge requests found
...@@ -487,7 +487,7 @@ private: ...@@ -487,7 +487,7 @@ private:
/// printNI - Print node info. /// printNI - Print node info.
/// ///
void printNI(std::ostream &O, NodeInfo *NI) const; 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. /// printChanges - Hilight changes in order caused by scheduling.
/// ///
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment