1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-06-26 06:29:28 +00:00

Remove GNU C warning

This commit is contained in:
dschmenk 2017-08-03 06:29:46 -07:00
parent 26d69f2ce9
commit 4906a5a4c5

View File

@ -1525,8 +1525,11 @@ int emit_pending_seq()
int emitted = 0;
if (outflags & OPTIMIZE)
for (int pass = 0; pass < 2; pass++)
{
int pass;
for (pass = 0; pass < 2; pass++)
while (crunch_seq(&local_pending_seq, pass));
}
while (local_pending_seq)
{
op = local_pending_seq;