| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 127badcfe929691bcb595b7fce40dab89361da9c..e3858936075e31ad02e32f51f43235137bbb449d 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -1771,15 +1771,15 @@ class LDrop V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 1, 1> {
|
| +class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 2, 0> {
|
| public:
|
| LStoreCodeEntry(LOperand* function, LOperand* code_object) {
|
| inputs_[0] = function;
|
| - temps_[0] = code_object;
|
| + inputs_[1] = code_object;
|
| }
|
|
|
| LOperand* function() { return inputs_[0]; }
|
| - LOperand* code_object() { return temps_[0]; }
|
| + LOperand* code_object() { return inputs_[1]; }
|
|
|
| virtual void PrintDataTo(StringStream* stream);
|
|
|
|
|