search for: visitedsdnodeset

Displaying 1 result from an estimated 1 matches for "visitedsdnodeset".

2009 Dec 18
2
[LLVMdev] [PATCH] dbgs() Use
...08,7 +6009,7 @@ if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this); - errs() << "\n\n"; + dbgs() << "\n\n"; } void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const { @@ -6049,12 +6050,12 @@ void SDNode::dumpr() const { VisitedSDNodeSet once; - DumpNodesr(errs(), this, 0, 0, once); + DumpNodesr(dbgs(), this, 0, 0, once); } void SDNode::dumpr(const SelectionDAG *G) const { VisitedSDNodeSet once; - DumpNodesr(errs(), this, 0, G, once); + DumpNodesr(dbgs(), this, 0, G, once); } Index: lib/Target/X86/X86ISelDAGToDAG.cp...