mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-11 10:25:41 +00:00
Fixed so that it dereferences the ostream pointer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32640 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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.
|
||||||
///
|
///
|
||||||
|
Reference in New Issue
Block a user