Avoid an empty-if-body warning in release builds.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55050 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-08-20 14:00:56 +00:00
parent 08293f6b6c
commit 7a30bc4e7c

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.