| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index e514290d8f532c7049207fc37959fabb1ffa6a21..5898df366f6e6e605bacdb7a17461960fa1c0ef5 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1613,6 +1613,7 @@ class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric)
|
|
|
| Handle<Object> name() const { return hydrogen()->name(); }
|
| + bool is_own_property() const { return hydrogen()->is_own_property(); }
|
| };
|
|
|
|
|
| @@ -1702,6 +1703,7 @@ class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 1> {
|
| LOperand* object() { return inputs_[1]; }
|
| LOperand* key() { return inputs_[2]; }
|
| LOperand* temp_vector() { return temps_[0]; }
|
| + bool is_own_property() const { return hydrogen()->is_own_property(); }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric)
|
|
|