Index: src/crankshaft/x87/lithium-codegen-x87.cc |
diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc |
index a869fd0d819ddd841c86034a2cc3da3f7c7dc529..43a1d161489de1c4a83489a67f1817362cd897da 100644 |
--- a/src/crankshaft/x87/lithium-codegen-x87.cc |
+++ b/src/crankshaft/x87/lithium-codegen-x87.cc |
@@ -5283,21 +5283,6 @@ void LCodeGen::DoClampTToUint8NoSSE2(LClampTToUint8NoSSE2* instr) { |
} |
-void LCodeGen::DoDoubleBits(LDoubleBits* instr) { |
- X87Register value_reg = ToX87Register(instr->value()); |
- Register result_reg = ToRegister(instr->result()); |
- X87Fxch(value_reg); |
- __ sub(esp, Immediate(kDoubleSize)); |
- __ fst_d(Operand(esp, 0)); |
- if (instr->hydrogen()->bits() == HDoubleBits::HIGH) { |
- __ mov(result_reg, Operand(esp, kPointerSize)); |
- } else { |
- __ mov(result_reg, Operand(esp, 0)); |
- } |
- __ add(esp, Immediate(kDoubleSize)); |
-} |
- |
- |
void LCodeGen::DoAllocate(LAllocate* instr) { |
class DeferredAllocate final : public LDeferredCode { |
public: |