summaryrefslogtreecommitdiff
path: root/appl/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'appl/cmd')
-rw-r--r--appl/cmd/limbo/gen.b3
1 files changed, 2 insertions, 1 deletions
diff --git a/appl/cmd/limbo/gen.b b/appl/cmd/limbo/gen.b
index 062980fb..10988f48 100644
--- a/appl/cmd/limbo/gen.b
+++ b/appl/cmd/limbo/gen.b
@@ -562,7 +562,8 @@ foldbranch(in: ref Inst)
next := in.next;
*in = *b;
in.next = next;
- # b.reach = byte 1;
+ if(b.op == IRET)
+ b.reach = byte 1; # might be default return (TO DO)
continue;
}
foldbranch(in.branch);