aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-07-11 17:58:07 +0000
committerJim Laskey <jlaskey@mac.com>2006-07-11 17:58:07 +0000
commite37fe9b3a1cadceb42ac27fa0718f5a10ea2f0e6 (patch)
treeccc61f6a1210980ae946c0179a7c415cf548102e /lib/Target/Alpha/AlphaISelDAGToDAG.cpp
parente2a78f2e3dcea4a087fd776aefc56e9edef840a9 (diff)
downloadexternal_llvm-e37fe9b3a1cadceb42ac27fa0718f5a10ea2f0e6.zip
external_llvm-e37fe9b3a1cadceb42ac27fa0718f5a10ea2f0e6.tar.gz
external_llvm-e37fe9b3a1cadceb42ac27fa0718f5a10ea2f0e6.tar.bz2
Ensure that dump calls that are associated with asserts are removed from
non-debug build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelDAGToDAG.cpp')
-rw-r--r--lib/Target/Alpha/AlphaISelDAGToDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaISelDAGToDAG.cpp b/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
index 7443371..32d5222 100644
--- a/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
+++ b/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
@@ -303,7 +303,7 @@ void AlphaDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
bool rev = false;
bool isNE = false;
switch(CC) {
- default: N->dump(); assert(0 && "Unknown FP comparison!");
+ default: DEBUG(N->dump()); assert(0 && "Unknown FP comparison!");
case ISD::SETEQ: case ISD::SETOEQ: case ISD::SETUEQ: Opc = Alpha::CMPTEQ; break;
case ISD::SETLT: case ISD::SETOLT: case ISD::SETULT: Opc = Alpha::CMPTLT; break;
case ISD::SETLE: case ISD::SETOLE: case ISD::SETULE: Opc = Alpha::CMPTLE; break;