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}
This commit is contained in:
parent
88e2d14c90
commit
b990a6c691
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user