mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-23 02:32:11 +00:00
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:
parent
08293f6b6c
commit
7a30bc4e7c
@ -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