Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index d169bf6dfc61dcc14e6613a4ec15966dd81e58a9..bb96cea67d66a0c1883e8a1739b585dc50ae7f12 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -705,11 +705,12 @@ class LHasCachedArrayIndexAndBranch: public LControlInstruction<1, 0> { |
}; |
-class LClassOfTestAndBranch: public LControlInstruction<1, 1> { |
+class LClassOfTestAndBranch: public LControlInstruction<1, 2> { |
public: |
- LClassOfTestAndBranch(LOperand* value, LOperand* temp) { |
+ LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) { |
inputs_[0] = value; |
temps_[0] = temp; |
+ temps_[1] = temp2; |
} |
DECLARE_CONCRETE_INSTRUCTION(ClassOfTestAndBranch, |