| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index b3bf8540b44ef49dba82da8a3ff44d7bc1b24fe3..4d83b8e562295173c9d0b19262851798744387a6 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -1195,7 +1195,9 @@ class LConstantT: public LTemplateInstruction<1, 0, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
|
| DECLARE_HYDROGEN_ACCESSOR(Constant)
|
|
|
| - Handle<Object> value() const { return hydrogen()->handle(); }
|
| + Handle<Object> value(Isolate* isolate) const {
|
| + return hydrogen()->handle(isolate);
|
| + }
|
| };
|
|
|
|
|
|
|