diff options
| author | Quentin Carbonneaux <[email protected]> | 2016-04-09 14:21:56 -0400 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2016-04-09 14:21:56 -0400 |
| commit | 1e0f18e9086b825d6fc941bf37306ae2823f0341 (patch) | |
| tree | 71b5ebe09b04fa44465fd98a559a6a3541acd8c9 /ssa.c | |
| parent | 081360df6a06979852de977a4d4e56f3c4481a81 (diff) | |
add a proper block deletion routine
Diffstat (limited to 'ssa.c')
| -rw-r--r-- | ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -161,8 +161,8 @@ fillrpo(Fn *f) for (p=&f->start; *p;) { b = *p; if (b->id == -1) { + blkdel(b); *p = b->link; - /* todo, free block */ } else { b->id -= n; f->rpo[b->id] = b; |
