| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 56b53e0158fdc6f2eb8d9630e7c74c278cb41425..e12ca5e9bdad24655ca45862ee3eab5d47bd331c 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1784,15 +1784,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);
|
|
|
|
|