Skip to content

Commit d14ddb8

Browse files
committed
Callee was not in scope
1 parent fac86ef commit d14ddb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

www/notes/hustle.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ to pass arguments to C functions, we can't keep our heap pointer in
431431
We've decided to use the second option, which leaves the choice of @emph{where}
432432
to move the value once we receive it from the runtime system. As usual, we will
433433
consult the System V Calling Convention, which tells us that @racket['rbx] is a
434-
@emph[callee save] register, which means that any C function we might call is
434+
@emph{callee save} register, which means that any C function we might call is
435435
responsible for ensuring that the value in the register is saved and restored.
436436
In other words: we, the caller, don't have to worry about it! Because of this
437437
we're going to use @racket['rbx] to store our heap pointer. You can see

0 commit comments

Comments
 (0)