mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
This is not ideal but unbreaks build failure.
APInt::dump() is inside #ifndef NDEBUG, however SelectionDAG dump() routines are not. llvm-svn: 42047
This commit is contained in:
parent
9ce8a9d633
commit
c7cfb7ebfc
@ -3720,7 +3720,9 @@ 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 =
|
||||
|
Loading…
Reference in New Issue
Block a user