Removed incorrect optimization

This commit is contained in:
Eduard Urbach 2024-07-06 15:20:52 +02:00
parent fca944d26c
commit b886637dc3
Signed by: eduard
GPG key ID: 49226B848C78F6C8
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{}),
},
}
}