Index: src/arm64/lithium-codegen-arm64.cc |
diff --git a/src/arm64/lithium-codegen-arm64.cc b/src/arm64/lithium-codegen-arm64.cc |
index f301c8b765853ccc204cd04361757f68ac65f6cd..c86efbd3a424b2f01f82e104ba9059a5289d842f 100644 |
--- a/src/arm64/lithium-codegen-arm64.cc |
+++ b/src/arm64/lithium-codegen-arm64.cc |
@@ -3933,19 +3933,21 @@ void LCodeGen::DoFlooringDivByPowerOf2I(LFlooringDivByPowerOf2I* instr) { |
DeoptimizeIf(eq, instr->environment()); |
} |
- // If the negation could not overflow, simply shifting is OK. |
- if (!instr->hydrogen()->CheckFlag(HValue::kLeftCanBeMinInt)) { |
- __ Mov(result, Operand(dividend, ASR, shift)); |
+ // Dividing by -1 is basically negation, unless we overflow. |
+ if (divisor == -1) { |
+ if (instr->hydrogen()->CheckFlag(HValue::kLeftCanBeMinInt)) { |
+ DeoptimizeIf(vs, instr->environment()); |
+ } |
return; |
} |
- // Dividing by -1 is basically negation, unless we overflow. |
- if (divisor == -1) { |
- DeoptimizeIf(vs, instr->environment()); |
+ // If the negation could not overflow, simply shifting is OK. |
+ if (!instr->hydrogen()->CheckFlag(HValue::kLeftCanBeMinInt)) { |
+ __ Mov(result, Operand(dividend, ASR, shift)); |
return; |
} |
- __ Asr(result, dividend, shift); |
+ __ Asr(result, result, shift); |
__ Csel(result, result, kMinInt / divisor, vc); |
} |