mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Avoid an empty-if-body warning in release builds.
llvm-svn: 55050
This commit is contained in:
parent
2555c4a2ca
commit
7f2b41c9e2
@ -127,9 +127,10 @@ ScanOperands:
|
||||
if (NeedsRevisit)
|
||||
continue;
|
||||
|
||||
if (i == NumOperands)
|
||||
if (i == NumOperands) {
|
||||
DEBUG(cerr << "Legally typed node: "; N->dump(&DAG); cerr << "\n");
|
||||
}
|
||||
}
|
||||
NodeDone:
|
||||
|
||||
// If we reach here, the node was processed, potentially creating new nodes.
|
||||
|
Loading…
x
Reference in New Issue
Block a user