mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-23 23:30:22 +00:00
Fix stack overflow
This commit is contained in:
parent
e771b37db2
commit
4504556d3c
@ -246,7 +246,7 @@ class Environment(val parent: Option[Environment], val prefix: String, val cpuFa
|
|||||||
e.things -= str.stripPrefix(prefix) + ".rawaddr"
|
e.things -= str.stripPrefix(prefix) + ".rawaddr"
|
||||||
e.things -= str.stripPrefix(prefix) + ".rawaddr.lo"
|
e.things -= str.stripPrefix(prefix) + ".rawaddr.lo"
|
||||||
e.things -= str.stripPrefix(prefix) + ".rawaddr.hi"
|
e.things -= str.stripPrefix(prefix) + ".rawaddr.hi"
|
||||||
parent.foreach(x => removeVariableImpl2(x,str))
|
e.parent.foreach(x => removeVariableImpl2(x,str))
|
||||||
}
|
}
|
||||||
removeVariableImpl2(this, prefix + localVarToRelativize)
|
removeVariableImpl2(this, prefix + localVarToRelativize)
|
||||||
val namePrefix = concreteGlobalTarget + '.'
|
val namePrefix = concreteGlobalTarget + '.'
|
||||||
|
Loading…
Reference in New Issue
Block a user