diff options
| author | Quentin Carbonneaux <[email protected]> | 2024-06-05 12:50:36 +0200 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2024-06-05 12:50:36 +0200 |
| commit | 2c2051542b7671fd060560edf09516ecf56bf6fa (patch) | |
| tree | f48d80606b0587adffbc09f252bf881c11fb3488 | |
| parent | c8220b638b17cb9eb583cca15d1b02c36a28ed2f (diff) | |
relax one assert
In this branch we only need that br[b->loop].b
is defined. This is the case if b->loop >= n.
| -rw-r--r-- | mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -296,7 +296,7 @@ coalesce(Fn *fn) if (s->l) { radd(&s->r, ip); if (b->loop != -1) { - assert(b->loop > n); + assert(b->loop >= n); radd(&s->r, br[b->loop].b - 1); } } |
