Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 49f7b64f14e6b359302833d3f2be19f9087443e9..cd627517134880e46ffff3803c6d8bb3f14db6dd 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1275,25 +1275,6 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
} |
-HValue* LChunkBuilder::SimplifiedDivisorForMathFloorOfDiv(HValue* divisor) { |
- if (divisor->IsConstant() && |
- HConstant::cast(divisor)->HasInteger32Value()) { |
- HConstant* constant_val = HConstant::cast(divisor); |
- return constant_val->CopyToRepresentation(Representation::Integer32(), |
- divisor->block()->zone()); |
- } |
- // A value with an integer representation does not need to be transformed. |
- if (divisor->representation().IsInteger32()) { |
- return divisor; |
- // A change from an integer32 can be replaced by the integer32 value. |
- } else if (divisor->IsChange() && |
- HChange::cast(divisor)->from().IsInteger32()) { |
- return HChange::cast(divisor)->value(); |
- } |
- return NULL; |
-} |
- |
- |
LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) { |
HValue* right = instr->right(); |
if (!right->IsConstant()) { |