Index: src/crankshaft/ia32/lithium-ia32.h |
diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h |
index 4a84c4515194539669fadee664d784e090a2f57d..717eabb711315da0eee198690bc8e92d80496b78 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.h |
+++ b/src/crankshaft/ia32/lithium-ia32.h |
@@ -57,7 +57,6 @@ class LCodeGen; |
V(ConstantI) \ |
V(ConstantS) \ |
V(ConstantT) \ |
- V(ConstructDouble) \ |
V(Context) \ |
V(DebugBreak) \ |
V(DeclareGlobals) \ |
@@ -2365,20 +2364,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, 1> { |
public: |
LAllocate(LOperand* context, LOperand* size, LOperand* temp) { |