Added label type

This commit is contained in:
2025-03-13 16:57:13 +01:00
parent d96c351b4b
commit c1913d99d0
32 changed files with 102 additions and 63 deletions

View File

@ -14,9 +14,9 @@ func (f *Function) CompileIf(branch *ast.If) error {
f.count.branch++
var (
end string
success = f.CreateLabel("if true", f.count.branch)
fail = f.CreateLabel("if false", f.count.branch)
end asm.Label
success = f.CreateLabel("if true", f.count.branch, asm.ControlLabel)
fail = f.CreateLabel("if false", f.count.branch, asm.ControlLabel)
err = f.CompileCondition(branch.Condition, success, fail)
)
@ -33,7 +33,7 @@ func (f *Function) CompileIf(branch *ast.If) error {
}
if branch.Else != nil {
end = f.CreateLabel("if end", f.count.branch)
end = f.CreateLabel("if end", f.count.branch, asm.ControlLabel)
f.Jump(asm.JUMP, end)
}