Index: src/crankshaft/ppc/lithium-ppc.h |
diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h |
index 6fe3a1c7b36858863e0f401712e915342f560e1a..0828fe09da0846384bda6ba1065a6abc82c71c44 100644 |
--- a/src/crankshaft/ppc/lithium-ppc.h |
+++ b/src/crankshaft/ppc/lithium-ppc.h |
@@ -53,7 +53,6 @@ class LCodeGen; |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
- V(ConstructDouble) \ |
V(Context) \ |
V(DebugBreak) \ |
V(DeclareGlobals) \ |
@@ -2279,20 +2278,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, LOperand* size, LOperand* temp1, |