Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index 45bafc3227a52ede444bcfdfd5c4958bbaec58ac..6252b88b4dbe436f7594d1dfbfaed6e8c30b96ff 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -55,7 +55,6 @@ class LCodeGen; |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
- V(ConstructDouble) \ |
V(Context) \ |
V(DebugBreak) \ |
V(DeclareGlobals) \ |
@@ -2352,20 +2351,6 @@ class LDoubleBits final : public LTemplateInstruction<1, 1, 0> { |
}; |
-class LConstructDouble final : public LTemplateInstruction<1, 2, 0> { |
- public: |
- LConstructDouble(LOperand* hi, LOperand* lo) { |
- inputs_[0] = hi; |
- inputs_[1] = lo; |
- } |
- |
- LOperand* hi() { return inputs_[0]; } |
- LOperand* lo() { return inputs_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(ConstructDouble, "construct-double") |
-}; |
- |
- |
class LAllocate final : public LTemplateInstruction<1, 2, 2> { |
public: |
LAllocate(LOperand* context, |