Commit b990a6c6 authored by rmcilroy's avatar rmcilroy Committed by Commit bot

Turn off SupportsFlexibleFloorAndRound for Arm64 due to a bug.

There is a bug with SupportsFlexibleFloorAndRound on Arm64. Turn it off for
now until we figure out a proper solution.

BUG=chromium:476477
LOG=Y

Review URL: https://codereview.chromium.org/1093863002

Cr-Commit-Position: refs/heads/master@{#27925}
parent 88e2d14c
......@@ -2576,7 +2576,9 @@ class HUnaryMathOperation FINAL : public HTemplateInstruction<2> {
// Math.round.
bool SupportsFlexibleFloorAndRound() const {
#ifdef V8_TARGET_ARCH_ARM64
return true;
// TODO(rmcilroy): Re-enable this for Arm64 once http://crbug.com/476477 is
// fixed.
return false;
#else
return false;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment