Skip to content

Commit

Permalink
Correct bounds in Ziggy's compile.rkt
Browse files Browse the repository at this point in the history
  • Loading branch information
pdarragh committed Oct 24, 2023
1 parent b0415e7 commit 0896430
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ziggy/src/compile.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
{:> E0} (Extern 'write_byte)
{:> E1} (Extern 'raise_error)
(Label 'entry)
{:> E0 H0} (Sub rsp 8)
{:> A H0} (compile-e e)
{:> E0 H0} (Add rsp 8)
{:> E0 F} (Sub rsp 8)
{:> A F} (compile-e e)
{:> E0 F} (Add rsp 8)
{:> F} (Push r15) {:> F} ; save callee-saved register
{:> H0} (Push rbx)
{:> H0} (Mov rbx rdi) {:> H0} ; recv heap pointer
Expand Down

0 comments on commit 0896430

Please sign in to comment.