Totally disable the setSubgraphColor calls temporarily, as they're

currently troublesome even for #ifndef NDEBUG builds.

llvm-svn: 58512
This commit is contained in:
Dan Gohman 2008-10-31 16:12:56 +00:00
parent 2a79a90430
commit 71d7e9b667
1 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ void SelectRoot(SelectionDAG &DAG) {
// Skip already selected nodes.
if (isSelected(Node->getNodeId()))
continue;
#ifndef NDEBUG
#if 0
DAG.setSubgraphColor(Node, "red");
#endif
SDNode *ResNode = Select(SDValue(Node, 0));
@ -190,7 +190,7 @@ void SelectRoot(SelectionDAG &DAG) {
continue;
// Replace node.
if (ResNode) {
#ifndef NDEBUG
#if 0
DAG.setSubgraphColor(ResNode, "yellow");
DAG.setSubgraphColor(ResNode, "black");
#endif