| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index ae8013891f087e07886722b87f2370167177b9f1..8b0fb8157a2537a02ef91f79df2ca27309faa46a 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -2151,22 +2151,19 @@ class LSmiUntag V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 2> {
|
| +class LStoreNamedField V8_FINAL : public LTemplateInstruction<0, 2, 1> {
|
| public:
|
| LStoreNamedField(LOperand* obj,
|
| LOperand* val,
|
| - LOperand* temp,
|
| - LOperand* temp_map) {
|
| + LOperand* temp) {
|
| inputs_[0] = obj;
|
| inputs_[1] = val;
|
| temps_[0] = temp;
|
| - temps_[1] = temp_map;
|
| }
|
|
|
| LOperand* object() { return inputs_[0]; }
|
| LOperand* value() { return inputs_[1]; }
|
| LOperand* temp() { return temps_[0]; }
|
| - LOperand* temp_map() { return temps_[1]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(StoreNamedField, "store-named-field")
|
| DECLARE_HYDROGEN_ACCESSOR(StoreNamedField)
|
|
|