Skip to content

Commit

Permalink
replace string with value in call instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
Willyboar committed May 17, 2023
1 parent 77288b8 commit 0f1294a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glove.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub type Inst {
// Unconditionally jumps to a label
Jmp(String)
// Calls a function
Call(String, #(Type, Value))
Call(Value, #(Type, Value))
// Allocates a 4-byte aligned area on the stack
Alloc4(Int)
// Allocates a 8-byte aligned area on the stack
Expand Down

0 comments on commit 0f1294a

Please sign in to comment.