diff options
author | Devang Patel <dpatel@apple.com> | 2007-09-17 22:24:00 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-09-17 22:24:00 +0000 |
commit | 8feb1f4467425d23ed74cce61e49f18a51a63421 (patch) | |
tree | d789e25e8511935fc3f0fe987dd67d17be1b1d86 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 856585b6d63de9706584c27683f48ae858a6ca3c (diff) |
Do not hide APInt::dump() inside #ifndef NDEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 5a518994a0..3744c4ad66 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3720,9 +3720,7 @@ void SDNode::dump(const SelectionDAG *G) const { cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">"; else { cerr << "<APFloat("; -#ifndef NDEBUG CSDN->getValueAPF().convertToAPInt().dump(); -#endif cerr << ")>"; } } else if (const GlobalAddressSDNode *GADN = |