Index: src/crankshaft/arm/lithium-arm.h |
diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h |
index f2da39ffd9cbb6fb76167ef7e3cb738193baeb1f..da148979c9e9e939cddd703286cd2e729cec99b7 100644 |
--- a/src/crankshaft/arm/lithium-arm.h |
+++ b/src/crankshaft/arm/lithium-arm.h |
@@ -53,7 +53,6 @@ class LCodeGen; |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
- V(ConstructDouble) \ |
V(Context) \ |
V(DebugBreak) \ |
V(DeclareGlobals) \ |
@@ -2346,20 +2345,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, |