Added more tests

This commit is contained in:
2024-07-17 19:50:46 +02:00
parent 8b2cdfa841
commit 68e21c96e3
5 changed files with 65 additions and 3 deletions

View File

@ -48,7 +48,6 @@ func (f *Function) AddVariable(variable *Variable) {
variable.Scope = scope
scope.variables[variable.Name] = variable
scope.Reserve(variable.Register)
scope.Use(variable.Register)
}