Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index d6a4c83266c49756e2cb65bd028533783fb46d71..6ce5d071987a0c12fd757fcc0915cd47bedff385 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -1344,8 +1344,8 @@ LInstruction* LChunkBuilder::DoFlooringDivByConstI(HMathFloorOfDiv* instr) { |
LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) { |
if (instr->RightIsPowerOf2()) { |
return DoFlooringDivByPowerOf2I(instr); |
- } else if (instr->right()->IsConstant()) { |
- return DoFlooringDivByConstI(instr); |
+ } else if (false && instr->right()->IsConstant()) { |
+ return DoFlooringDivByConstI(instr); // TODO(svenpanne) Fix and re-enable. |
} else { |
return DoDivI(instr); |
} |