Fixed incorrect register lifetime in for loops
This commit is contained in:
@ -90,7 +90,8 @@ func (c *compiler) compileX86(x asm.Instruction) {
|
||||
c.jump(x)
|
||||
|
||||
case asm.LABEL:
|
||||
c.codeLabels[x.Data.(*asm.Label).Name] = Address(len(c.code))
|
||||
label := x.Data.(*asm.Label)
|
||||
c.codeLabels[label.Name] = Address(len(c.code))
|
||||
|
||||
case asm.LOAD:
|
||||
c.load(x)
|
||||
|
Reference in New Issue
Block a user