static void tcSetLeastSignificantBits(integerPart *, unsigned int,
unsigned int bits);
-#ifndef NDEBUG
/// @brief debug method
void dump() const;
-#endif
/// @}
};
cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
else {
cerr << "<APFloat(";
-#ifndef NDEBUG
CSDN->getValueAPF().convertToAPInt().dump();
-#endif
cerr << ")>";
}
} else if (const GlobalAddressSDNode *GADN =
#include <limits>
#include <cstring>
#include <cstdlib>
-#ifndef NDEBUG
#include <iomanip>
-#endif
using namespace llvm;
return result;
}
-#ifndef NDEBUG
void APInt::dump() const
{
cerr << "APInt(" << BitWidth << ")=" << std::setbase(16);
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.