diff options
author | Emil Skoeldberg <emil@skoeldberg.net> | 2018-04-26 18:11:55 +0100 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2018-04-26 22:49:36 +0200 |
commit | e7a387585992a9378ba2f2319c2408c62a0b14e8 (patch) | |
tree | f7d21d2165b8017f3a28a3452a0da716f8e34b87 /rega.c | |
parent | 39b1f468b09d94cac6ec65a8c0fbc210e3c9989e (diff) | |
download | roux-e7a387585992a9378ba2f2319c2408c62a0b14e8.tar.gz |
Fix compiler warnings.
Compiler warned about comparison between signed and unsigned values.
Diffstat (limited to 'rega.c')
-rw-r--r-- | rega.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rega.c b/rega.c index 2f01c07..619b0e2 100644 --- a/rega.c +++ b/rega.c @@ -506,7 +506,7 @@ rega(Fn *fn) for (bp=blk, b=fn->start; b; b=b->link) *bp++ = b; qsort(blk, fn->nblk, sizeof blk[0], carve); - for (b=fn->start, i=b->ins; i-b->ins < b->nins; i++) + for (b=fn->start, i=b->ins; i<&b->ins[b->nins]; i++) if (i->op != Ocopy || !isreg(i->arg[0])) break; else { |