mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 15:10:30 +00:00
[Target] dumpr() is defined only in debug builds.
This fixes the clang build on macOS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319923 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b6659a744
commit
ee79c38757
@ -729,7 +729,9 @@ void NodeTemplate::print(raw_ostream &OS, const SelectionDAG &G) const {
|
||||
|
||||
void ResultStack::print(raw_ostream &OS, const SelectionDAG &G) const {
|
||||
OS << "Input node:\n";
|
||||
#ifndef NDEBUG
|
||||
InpNode->dumpr(&G);
|
||||
#endif
|
||||
OS << "Result templates:\n";
|
||||
for (unsigned I = 0, E = List.size(); I != E; ++I) {
|
||||
OS << '[' << I << "] ";
|
||||
|
Loading…
Reference in New Issue
Block a user