mirror of
https://github.com/KarolS/millfork.git
synced 2025-08-08 18:25:03 +00:00
Small inlining fix
This commit is contained in:
@@ -83,6 +83,9 @@ abstract class AbstractInliningCalculator[T <: AbstractCode] {
|
|||||||
case s: Statement => getAllCalledFunctions(s.getAllExpressions)
|
case s: Statement => getAllCalledFunctions(s.getAllExpressions)
|
||||||
case s: VariableExpression => Set(
|
case s: VariableExpression => Set(
|
||||||
s.name,
|
s.name,
|
||||||
|
s.name.stripSuffix(".raw"),
|
||||||
|
s.name.stripSuffix(".raw.lo"),
|
||||||
|
s.name.stripSuffix(".raw.hi"),
|
||||||
s.name.stripSuffix(".pointer"),
|
s.name.stripSuffix(".pointer"),
|
||||||
s.name.stripSuffix(".pointer.lo"),
|
s.name.stripSuffix(".pointer.lo"),
|
||||||
s.name.stripSuffix(".pointer.hi"),
|
s.name.stripSuffix(".pointer.hi"),
|
||||||
|
Reference in New Issue
Block a user