relax one assert
In this branch we only need that br[b->loop].b is defined. This is the case if b->loop >= n.
This commit is contained in:
parent
c8220b638b
commit
2c2051542b
1 changed files with 1 additions and 1 deletions
2
mem.c
2
mem.c
|
@ -296,7 +296,7 @@ coalesce(Fn *fn)
|
||||||
if (s->l) {
|
if (s->l) {
|
||||||
radd(&s->r, ip);
|
radd(&s->r, ip);
|
||||||
if (b->loop != -1) {
|
if (b->loop != -1) {
|
||||||
assert(b->loop > n);
|
assert(b->loop >= n);
|
||||||
radd(&s->r, br[b->loop].b - 1);
|
radd(&s->r, br[b->loop].b - 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue