1
0
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:
Dan Gohman 2008-08-20 14:00:56 +00:00
parent 2555c4a2ca
commit 7f2b41c9e2

View File

@ -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.