| Index: src/DartARM32/assembler_arm.cc
|
| diff --git a/src/DartARM32/assembler_arm.cc b/src/DartARM32/assembler_arm.cc
|
| index f86150009113d967540513ac424ae7bccb19e4a4..f4145b76a35840a9f9d75b54eed399083218b3d7 100644
|
| --- a/src/DartARM32/assembler_arm.cc
|
| +++ b/src/DartARM32/assembler_arm.cc
|
| @@ -1067,7 +1067,8 @@ void Assembler::vsqrtd(DRegister dd, DRegister dm, Condition cond) {
|
| EmitVFPddd(cond, B23 | B21 | B20 | B16 | B7 | B6, dd, D0, dm);
|
| }
|
|
|
| -
|
| +#if 0
|
| +// Moved to ARM32::AssemblerARM32::emitVFPsd
|
| void Assembler::EmitVFPsd(Condition cond, int32_t opcode,
|
| SRegister sd, DRegister dm) {
|
| ASSERT(TargetCPUFeatures::vfp_supported());
|
| @@ -1083,7 +1084,7 @@ void Assembler::EmitVFPsd(Condition cond, int32_t opcode,
|
| Emit(encoding);
|
| }
|
|
|
| -
|
| +// Moved to ARM32::AssemblerARM32::emitVFPds
|
| void Assembler::EmitVFPds(Condition cond, int32_t opcode,
|
| DRegister dd, SRegister sm) {
|
| ASSERT(TargetCPUFeatures::vfp_supported());
|
| @@ -1099,15 +1100,16 @@ void Assembler::EmitVFPds(Condition cond, int32_t opcode,
|
| Emit(encoding);
|
| }
|
|
|
| -
|
| +// Moved to ARM32::AssemblerARM32::vcvtsd().
|
| void Assembler::vcvtsd(SRegister sd, DRegister dm, Condition cond) {
|
| EmitVFPsd(cond, B23 | B21 | B20 | B18 | B17 | B16 | B8 | B7 | B6, sd, dm);
|
| }
|
|
|
| -
|
| +// Moved to ARM32::AssemblerARM32::vcvtds().
|
| void Assembler::vcvtds(DRegister dd, SRegister sm, Condition cond) {
|
| EmitVFPds(cond, B23 | B21 | B20 | B18 | B17 | B16 | B7 | B6, dd, sm);
|
| }
|
| +#endif
|
|
|
|
|
| void Assembler::vcvtis(SRegister sd, SRegister sm, Condition cond) {
|
|
|