summaryrefslogtreecommitdiff
path: root/il.fun
diff options
context:
space:
mode:
authorVladimir Azarov <avm@intermediate-node.net>2025-08-09 01:17:24 +0200
committerVladimir Azarov <avm@intermediate-node.net>2025-08-09 01:17:24 +0200
commit9bc877d781b988768c79d40a0f6a7055e9ad14e7 (patch)
tree72ea857d9df1a9dc179e82e1809220013a995606 /il.fun
parentffee5da4dab26c8500add63da540ee252545370f (diff)
Register map
Diffstat (limited to 'il.fun')
-rw-r--r--il.fun4
1 files changed, 2 insertions, 2 deletions
diff --git a/il.fun b/il.fun
index 9f8c2b7..416f4b0 100644
--- a/il.fun
+++ b/il.fun
@@ -1202,7 +1202,7 @@ functor IL(P: PARSER) = struct
| P.StmtDoWhile pair => convDoWhile ctx pair
| P.StmtBreak => convBreakOrCont true ctx
| P.StmtContinue => convBreakOrCont false ctx
- | P.StmtNone => raise Unreachable
+ | P.StmtNone => ()
val Pl = fn z =>
let
@@ -1382,7 +1382,7 @@ functor IL(P: PARSER) = struct
let
val c = if class = VR4 then "w4" else "w8"
- val () = printf `"%" I idx `" " `c
+ val () = printf `"%" Ip 4 idx `" " `c
`": defs = " Plist i defs (", ", true, 0)
`", uses = " Plist i use (", ", true, 0) %
in