| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index fe7681b03d4aa501f060b1464c01cd2ff472c14e..9ace8f869b68c20cf59ccbd8d7880fad85584d91 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1346,6 +1346,7 @@ class LStoreGlobalGeneric: public LTemplateInstruction<0, 3, 0> {
|
| LOperand* global_object() { return InputAt(1); }
|
| Handle<Object> name() const { return hydrogen()->name(); }
|
| LOperand* value() { return InputAt(2); }
|
| + bool strict_mode() { return hydrogen()->strict_mode(); }
|
| };
|
|
|
|
|
| @@ -1694,6 +1695,7 @@ class LStoreNamedGeneric: public LTemplateInstruction<0, 3, 0> {
|
| LOperand* object() { return inputs_[1]; }
|
| LOperand* value() { return inputs_[2]; }
|
| Handle<Object> name() const { return hydrogen()->name(); }
|
| + bool strict_mode() { return hydrogen()->strict_mode(); }
|
| };
|
|
|
|
|
| @@ -1755,6 +1757,7 @@ class LStoreKeyedGeneric: public LTemplateInstruction<0, 4, 0> {
|
| }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric)
|
|
|
| virtual void PrintDataTo(StringStream* stream);
|
|
|
| @@ -1762,6 +1765,7 @@ class LStoreKeyedGeneric: public LTemplateInstruction<0, 4, 0> {
|
| LOperand* object() { return inputs_[1]; }
|
| LOperand* key() { return inputs_[2]; }
|
| LOperand* value() { return inputs_[3]; }
|
| + bool strict_mode() { return hydrogen()->strict_mode(); }
|
| };
|
|
|
|
|
|
|