aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-12-04 06:14:27 +0000
committerChris Lattner <sabre@nondot.org>2008-12-04 06:14:27 +0000
commitd021901b097f74ef1e14f2547884acfbbb4a000c (patch)
tree22e2300de745d51d62ce7575db3f82c401a368d8 /lib
parenta8103dad4e84e031c5845e18268655cc0bfbdb8d (diff)
This code is apparently quite confused. In the meantime,
get it building when NDEBUG is set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/CellSPU/SPUISelLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/CellSPU/SPUISelLowering.cpp b/lib/Target/CellSPU/SPUISelLowering.cpp
index f8056484b7..a08ee876f8 100644
--- a/lib/Target/CellSPU/SPUISelLowering.cpp
+++ b/lib/Target/CellSPU/SPUISelLowering.cpp
@@ -3065,12 +3065,13 @@ SPUTargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const
// (SPUextract_elt0 <arg>)
// Types must match, however...
#if defined(NDEBUG)
- if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
+ // if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) {
cerr << "\nReplace: ";
N->dump(&DAG);
cerr << "\nWith: ";
Op0.getNode()->dump(&DAG);
cerr << "\n";
+
#endif
return Op0;