summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appl/cmd/limbo/typecheck.b2
-rw-r--r--dis/limbo.disbin343383 -> 343383 bytes
2 files changed, 1 insertions, 1 deletions
diff --git a/appl/cmd/limbo/typecheck.b b/appl/cmd/limbo/typecheck.b
index 0f1cbe7f..ae5604b0 100644
--- a/appl/cmd/limbo/typecheck.b
+++ b/appl/cmd/limbo/typecheck.b
@@ -16,7 +16,7 @@ fninline(d: ref Decl): int
left, right: ref Node;
n := d.init;
- if(dontinline || d.inline < byte 0 || d.locals != nil || ispoly(d) || n.ty.tof.kind == Tnone || nodes(n) >= 100)
+ if(dontinline || d.inline == byte -1 || d.locals != nil || ispoly(d) || n.ty.tof.kind == Tnone || nodes(n) >= 100)
return 0;
n = n.right;
if(n.op == Oseq && n.right == nil)
diff --git a/dis/limbo.dis b/dis/limbo.dis
index 3e835b96..e8d2f98a 100644
--- a/dis/limbo.dis
+++ b/dis/limbo.dis
Binary files differ