| Index: src/arm64/lithium-arm64.h
|
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
|
| index 0b9d6e4b1ee66553aecf99b279f1bbc643fa4e74..70d6ed669440942fbd20670922290b5651ab303f 100644
|
| --- a/src/arm64/lithium-arm64.h
|
| +++ b/src/arm64/lithium-arm64.h
|
| @@ -270,7 +270,9 @@ class LInstruction : public ZoneObject {
|
| // Interface to the register allocator and iterators.
|
| bool ClobbersTemps() const { return IsCall(); }
|
| bool ClobbersRegisters() const { return IsCall(); }
|
| - virtual bool ClobbersDoubleRegisters() const { return IsCall(); }
|
| + virtual bool ClobbersDoubleRegisters(Isolate* isolate) const V8_OVERRIDE {
|
| + return IsCall();
|
| + }
|
| bool IsMarkedAsCall() const { return IsCall(); }
|
|
|
| virtual bool HasResult() const = 0;
|
| @@ -887,7 +889,7 @@ class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
|
| DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
|
|
|
| - virtual bool ClobbersDoubleRegisters() const V8_OVERRIDE {
|
| + virtual bool ClobbersDoubleRegisters(Isolate* isolate) const V8_OVERRIDE {
|
| return save_doubles() == kDontSaveFPRegs;
|
| }
|
|
|
|
|