From 73c88c6b077da808ca81f22e19571ca8ef645a1e Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 27 Nov 2024 00:04:06 +0900 Subject: [PATCH] CodeGen: Add forgotten a/-1 case --- CodeGen/src/OptimizeConstProp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CodeGen/src/OptimizeConstProp.cpp b/CodeGen/src/OptimizeConstProp.cpp index b820826a..6871b8b2 100644 --- a/CodeGen/src/OptimizeConstProp.cpp +++ b/CodeGen/src/OptimizeConstProp.cpp @@ -1224,6 +1224,8 @@ static void constPropInInst(ConstPropState& state, IrBuilder& build, IrFunction& { if (*k == 1.0) // a / 1.0 = a substitute(function, inst, inst.a); + else if (*k == -1.0) // a / -1.0 = -a + replace(function, block, index, {IrCmd::UNM_NUM, inst.a}); else if (int exp = 0; frexp(*k, &exp) == 0.5 && exp >= -1000 && exp <= 1000) // a / 2^k = a * 2^-k replace(function, block, index, {IrCmd::MUL_NUM, inst.a, build.constDouble(1.0 / *k)}); else