| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 25ffa4265ae2394d5a08fb7b073fcc5bfba46f6a..ea3a658f3c31c48840e2475a6488dba51c95b6ec 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -1732,15 +1732,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);
|
|
|
|
|