mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 06:29:59 +00:00
Do not hide APInt::dump() inside #ifndef NDEBUG.
llvm-svn: 42068
This commit is contained in:
parent
8748fd73b2
commit
547d418b8e
@ -1160,10 +1160,8 @@ public:
|
||||
static void tcSetLeastSignificantBits(integerPart *, unsigned int,
|
||||
unsigned int bits);
|
||||
|
||||
#ifndef NDEBUG
|
||||
/// @brief debug method
|
||||
void dump() const;
|
||||
#endif
|
||||
|
||||
/// @}
|
||||
};
|
||||
|
@ -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 =
|
||||
|
@ -21,9 +21,7 @@
|
||||
#include <limits>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
#ifndef NDEBUG
|
||||
#include <iomanip>
|
||||
#endif
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -1999,7 +1997,6 @@ std::string APInt::toString(uint8_t radix, bool wantSigned) const {
|
||||
return result;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void APInt::dump() const
|
||||
{
|
||||
cerr << "APInt(" << BitWidth << ")=" << std::setbase(16);
|
||||
@ -2011,7 +2008,6 @@ void APInt::dump() const
|
||||
cerr << " U(" << this->toStringUnsigned(10) << ") S("
|
||||
<< this->toStringSigned(10) << ")" << std::setbase(10);
|
||||
}
|
||||
#endif
|
||||
|
||||
// This implements a variety of operations on a representation of
|
||||
// arbitrary precision, two's-complement, bignum integer values.
|
||||
|
Loading…
Reference in New Issue
Block a user