diff options
| author | Quentin Carbonneaux <[email protected]> | 2016-04-09 14:31:42 -0400 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2016-04-09 14:31:42 -0400 |
| commit | d8770d112bcee4c9df1cb4276780bddc818de5a4 (patch) | |
| tree | 662afede4a76dfd84c4d922981a59fab057edf51 /fold.c | |
| parent | 71e6fa0b302e38232199f53214d06d7001c64caa (diff) | |
fix wrong assertion in fold
Diffstat (limited to 'fold.c')
| -rw-r--r-- | fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -206,7 +206,7 @@ fold(Fn *fn) } b->visit++; assert(b->jmp.type != JJmp - || edge[n][0].dead != 0 + || !edge[n][0].dead || flowrk == &edge[n][0]); } else if (nuse) { |
