diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-31 16:12:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-31 16:12:56 +0000 |
commit | 00b58dfc884734ab99a21fba458489fde79ed3bc (patch) | |
tree | bc54d7dc9f3c56469a5b108e693dd3cb63f163e6 | |
parent | 06f0aff69eb0289bdba19a364132bc522f44feba (diff) |
Totally disable the setSubgraphColor calls temporarily, as they're
currently troublesome even for #ifndef NDEBUG builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58512 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/DAGISelHeader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/DAGISelHeader.h b/include/llvm/CodeGen/DAGISelHeader.h index 43168f803f..ec72152180 100644 --- a/include/llvm/CodeGen/DAGISelHeader.h +++ b/include/llvm/CodeGen/DAGISelHeader.h @@ -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 |