| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 8b311b7ae9c857e392ef51e5445a8a026b78b0c3..ab964af65f30529824bbed2efd108273821b92cc 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1261,7 +1261,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);
|
| + }
|
| };
|
|
|
|
|
|
|