| Index: src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| diff --git a/src/crankshaft/ppc/lithium-codegen-ppc.cc b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| index f890decbb73095be96b6bdd36d6a00bce07e310d..6cc45919d4d243753574908c8ca577c8ef28e060 100644
|
| --- a/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| +++ b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| @@ -5308,18 +5308,6 @@ void LCodeGen::DoDoubleBits(LDoubleBits* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoConstructDouble(LConstructDouble* instr) {
|
| - Register hi_reg = ToRegister(instr->hi());
|
| - Register lo_reg = ToRegister(instr->lo());
|
| - DoubleRegister result_reg = ToDoubleRegister(instr->result());
|
| -#if V8_TARGET_ARCH_PPC64
|
| - __ MovInt64ComponentsToDouble(result_reg, hi_reg, lo_reg, r0);
|
| -#else
|
| - __ MovInt64ToDouble(result_reg, hi_reg, lo_reg);
|
| -#endif
|
| -}
|
| -
|
| -
|
| void LCodeGen::DoAllocate(LAllocate* instr) {
|
| class DeferredAllocate final : public LDeferredCode {
|
| public:
|
|
|