mirror of
https://github.com/KarolS/millfork.git
synced 2025-04-04 22:29:32 +00:00
Improvements to constant folding
This commit is contained in:
parent
fb71f88343
commit
2beabb7bed
5
src/main/scala/millfork/env/Constant.scala
vendored
5
src/main/scala/millfork/env/Constant.scala
vendored
@ -522,7 +522,10 @@ case class CompoundConstant(operator: MathOperator.Value, lhs: Constant, rhs: Co
|
||||
case MathOperator.Plus9 => c
|
||||
case MathOperator.DecimalPlus => c
|
||||
case MathOperator.DecimalPlus9 => c
|
||||
case MathOperator.Minus => CompoundConstant(operator, l, r)
|
||||
case MathOperator.Minus => c match {
|
||||
case NumericConstant(rv, rs) => NumericConstant(-rv, rs)
|
||||
case _ => CompoundConstant(operator, l, r)
|
||||
}
|
||||
case MathOperator.Times => Constant.Zero
|
||||
case MathOperator.Shl => Constant.Zero
|
||||
case MathOperator.Shr => Constant.Zero
|
||||
|
@ -178,4 +178,15 @@ class ConstantSuite extends FunSuite with Matchers {
|
||||
m.readMedium(0xc003) should equal(200/8)
|
||||
}
|
||||
}
|
||||
|
||||
test("Negative constant evaluation") {
|
||||
EmuUnoptimizedCrossPlatformRun(Cpu.Mos, Cpu.Z80, Cpu.Intel8080, Cpu.Sharp, Cpu.Intel8086, Cpu.Motorola6809)("""
|
||||
| word output @$c000
|
||||
| void main () {
|
||||
| output = -1 * -1
|
||||
| }
|
||||
""".stripMargin){m =>
|
||||
m.readWord(0xc000) should equal(1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user