Fix missing semi on label

This commit is contained in:
nub31
2025-02-02 21:47:21 +01:00
parent 928e9b8acb
commit 1db0aefc55

View File

@@ -108,7 +108,7 @@ gc_sweep:
jmp .free_memory jmp .free_memory
.remove_head: .remove_head:
mov [alloc_list], rdx ; update head node to be the next node mov [alloc_list], rdx ; update head node to be the next node
.free_memory .free_memory:
push rsi ; save previous node since it will also be the previous node for the next item push rsi ; save previous node since it will also be the previous node for the next item
push rdx ; save next node push rdx ; save next node
mov rsi, [rdi + 1] ; get length of the object mov rsi, [rdi + 1] ; get length of the object