diff options
Diffstat (limited to 'ir.c')
| -rw-r--r-- | ir.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -242,6 +242,8 @@ newblk(struct function *fn) void freeblk(struct function *fn, struct block *blk) { + if (blk->npred > 1) + xbfree(blk->_pred); vfree(&blk->phi); vfree(&blk->ins); if (blk->lnext) blk->lnext->lprev = blk->lprev; |