| Index: src/crankshaft/arm/lithium-codegen-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-codegen-arm.cc b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| index db80aadaa1dd340838593cad178f400ca4d104a9..609f9c1f8efc65a2c24226ed8453d8f724cab62a 100644
|
| --- a/src/crankshaft/arm/lithium-codegen-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| @@ -5030,17 +5030,6 @@ void LCodeGen::DoClampTToUint8(LClampTToUint8* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoDoubleBits(LDoubleBits* instr) {
|
| - DwVfpRegister value_reg = ToDoubleRegister(instr->value());
|
| - Register result_reg = ToRegister(instr->result());
|
| - if (instr->hydrogen()->bits() == HDoubleBits::HIGH) {
|
| - __ VmovHigh(result_reg, value_reg);
|
| - } else {
|
| - __ VmovLow(result_reg, value_reg);
|
| - }
|
| -}
|
| -
|
| -
|
| void LCodeGen::DoAllocate(LAllocate* instr) {
|
| class DeferredAllocate final : public LDeferredCode {
|
| public:
|
|
|