Separated compiler into its own package
This commit is contained in:
@ -15,7 +15,7 @@ func (f *Function) CompileCall(root *expression.Expression) error {
|
||||
isSyscall := funcName == "syscall"
|
||||
|
||||
if !isSyscall {
|
||||
_, exists := f.functions[funcName]
|
||||
_, exists := f.Functions[funcName]
|
||||
|
||||
if !exists {
|
||||
return errors.New(&errors.UnknownFunction{Name: funcName}, f.File, root.Children[0].Token.Position)
|
||||
@ -52,6 +52,10 @@ func (f *Function) CompileCall(root *expression.Expression) error {
|
||||
}
|
||||
|
||||
for _, register := range registers {
|
||||
if register == f.cpu.Output[0] && root.Parent != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
f.Scope().Free(register)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user