Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index e95713dc9adf833d31496a7e2c0db99aa3c7dab7..ff0c61bdf6fc01c4253d175c18123974e8ed39d7 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -1221,7 +1221,9 @@ class LConstantT V8_FINAL : 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); |
+ } |
}; |