Skip to content

Commit 0896430

Browse files
committed
Correct bounds in Ziggy's compile.rkt
1 parent b0415e7 commit 0896430

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ziggy/src/compile.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
{:> E0} (Extern 'write_byte)
2323
{:> E1} (Extern 'raise_error)
2424
(Label 'entry)
25-
{:> E0 H0} (Sub rsp 8)
26-
{:> A H0} (compile-e e)
27-
{:> E0 H0} (Add rsp 8)
25+
{:> E0 F} (Sub rsp 8)
26+
{:> A F} (compile-e e)
27+
{:> E0 F} (Add rsp 8)
2828
{:> F} (Push r15) {:> F} ; save callee-saved register
2929
{:> H0} (Push rbx)
3030
{:> H0} (Mov rbx rdi) {:> H0} ; recv heap pointer

0 commit comments

Comments
 (0)