Index: src/x87/lithium-x87.h |
diff --git a/src/x87/lithium-x87.h b/src/x87/lithium-x87.h |
index 6683f02909b2cefcf46a2b4cf36bc16d59b977dc..8c992b8f6b75c2c4393bcd91355739c2c7eca2e1 100644 |
--- a/src/x87/lithium-x87.h |
+++ b/src/x87/lithium-x87.h |
@@ -1799,15 +1799,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); |