| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 896b499ad54ebd8d150e9661e1a8a0b06914e7bc..4d07d09d65aceb46d4da5ee97d2c4f9125f85455 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -1442,8 +1442,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);
|
| }
|
|
|