qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit c71f44c5a86f41e65179633160edeb90a9543987
parent 8215b50a10e240581bd1f9e8ae4d13c48f865c6c
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Tue,  7 Feb 2017 21:56:00 -0500

update assert() missed in 7e1c1f

Diffstat:
Mcfg.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cfg.c b/cfg.c @@ -93,7 +93,7 @@ rporec(Blk *b, uint x) x = rporec(s1, x); x = rporec(s2, x); b->id = x; - assert(x >= 0); + assert(x != -1u); return x - 1; }