Added label type
This commit is contained in:
@ -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)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user