summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Carbonneaux2018-02-21 21:03:10 +0100
committerQuentin Carbonneaux2018-02-21 22:12:33 +0100
commitfd77756ab8a8f3eb59231523a456b700499b29fc (patch)
treea7a9c66004ff794fa20b2a18c5b82d4e7ba0a5ea
parent0af95dda1b9113ef18f280dd91ab464fa0343134 (diff)
fix thisphiedge
-rw-r--r--ssa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssa.c b/ssa.c
index 5ca0574..92dd8fa 100644
--- a/ssa.c
+++ b/ssa.c
@@ -276,7 +276,7 @@ renblk(Blk *b, Name **stk, Fn *fn)
if (rtype(b->jmp.arg) == RTmp)
if (fn->tmp[t].visit)
b->jmp.arg = getstk(t, b, stk);
- for (ps=b->s; (s=*ps); ps++)
+ for (ps=b->s; (s=*ps); ps++) /* !!! NOT OK !!! */
for (p=s->phi; p; p=p->link) {
t = p->to.val;
if ((t=fn->tmp[t].visit)) {