commit | e37fe9b3a1cadceb42ac27fa0718f5a10ea2f0e6 | [log] [tgz] |
---|---|---|
author | Jim Laskey <jlaskey@mac.com> | Tue Jul 11 17:58:07 2006 +0000 |
committer | Jim Laskey <jlaskey@mac.com> | Tue Jul 11 17:58:07 2006 +0000 |
tree | ccc61f6a1210980ae946c0179a7c415cf548102e | |
parent | e2a78f2e3dcea4a087fd776aefc56e9edef840a9 [diff] [blame] |
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
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp index 5d404f0..5282252 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
@@ -421,7 +421,7 @@ } else { switch (Node->getOpcode()) { default: - Node->dump(); + DEBUG(Node->dump()); assert(0 && "This target-independent node should have been selected!"); case ISD::EntryToken: // fall thru case ISD::TokenFactor: