Removed incorrect optimization

This commit is contained in:
2024-07-06 15:20:52 +02:00
parent 8f9481c548
commit a9f305dec2
7 changed files with 16 additions and 38 deletions

View File

@ -36,9 +36,8 @@ func NewFunction(name string, file *fs.File, body token.List) *Function {
Syscall: x64.SyscallRegisters,
Output: x64.ReturnValueRegisters,
},
definitions: map[string]*Definition{},
variables: map[string]*Variable{},
finished: make(chan struct{}),
variables: map[string]*Variable{},
finished: make(chan struct{}),
},
}
}