Added scope package
This commit is contained in:
@ -47,7 +47,7 @@ func (f *Function) CompileCall(root *expression.Expression) error {
|
||||
|
||||
// Push
|
||||
for _, register := range f.cpu.General {
|
||||
if f.Scope().IsUsed(register) {
|
||||
if f.CurrentScope().IsUsed(register) {
|
||||
f.Register(asm.PUSH, register)
|
||||
}
|
||||
}
|
||||
@ -64,14 +64,14 @@ func (f *Function) CompileCall(root *expression.Expression) error {
|
||||
continue
|
||||
}
|
||||
|
||||
f.Scope().Free(register)
|
||||
f.CurrentScope().Free(register)
|
||||
}
|
||||
|
||||
// Pop
|
||||
for i := len(f.cpu.General) - 1; i >= 0; i-- {
|
||||
register := f.cpu.General[i]
|
||||
|
||||
if f.Scope().IsUsed(register) {
|
||||
if f.CurrentScope().IsUsed(register) {
|
||||
f.Register(asm.POP, register)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user