| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index d6a90e5eda2ef77bc0beecced0c7a55a8717b9ca..1020828062d5c49d82a1b16af879d13d1c086ae4 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -92,7 +92,6 @@ class LCodeGen;
|
| V(InstructionGap) \
|
| V(Integer32ToDouble) \
|
| V(InvokeFunction) \
|
| - V(IsConstructCallAndBranch) \
|
| V(IsStringAndBranch) \
|
| V(IsSmiAndBranch) \
|
| V(IsUndetectableAndBranch) \
|
| @@ -1111,19 +1110,6 @@ class LHasCachedArrayIndexAndBranch final : public LControlInstruction<1, 0> {
|
| };
|
|
|
|
|
| -class LIsConstructCallAndBranch final : public LControlInstruction<0, 1> {
|
| - public:
|
| - explicit LIsConstructCallAndBranch(LOperand* temp) {
|
| - temps_[0] = temp;
|
| - }
|
| -
|
| - LOperand* temp() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(IsConstructCallAndBranch,
|
| - "is-construct-call-and-branch")
|
| -};
|
| -
|
| -
|
| class LClassOfTestAndBranch final : public LControlInstruction<1, 2> {
|
| public:
|
| LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) {
|
|
|