summaryrefslogtreecommitdiff
path: root/appl/cmd
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2008-02-01 17:25:06 +0000
committerCharles.Forsyth <devnull@localhost>2008-02-01 17:25:06 +0000
commitacf16bbe632adbae6f2caf3210136c47ecee6a62 (patch)
tree2cf2b569b85b8b49f61d06b70c50167da8008bad /appl/cmd
parent80146ec649f45bdf6575689b673bc11acaacb920 (diff)
20080201-1732
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);