| Index: src/DartARM32/assembler_arm.cc
|
| diff --git a/src/DartARM32/assembler_arm.cc b/src/DartARM32/assembler_arm.cc
|
| index f2fd9975b40826d5043e36656aa710c33c646a96..d1730c6fe21fd0a73c66cd98300d1cf8daf68e51 100644
|
| --- a/src/DartARM32/assembler_arm.cc
|
| +++ b/src/DartARM32/assembler_arm.cc
|
| @@ -274,19 +274,18 @@ void Assembler::cmn(Register rn, Operand o, Condition cond) {
|
| EmitType01(cond, o.type(), CMN, 1, rn, R0, o);
|
| }
|
|
|
| -
|
| +#if 0
|
| +// Moved to ARM32::AssemberARM32::orr()
|
| void Assembler::orr(Register rd, Register rn, Operand o, Condition cond) {
|
| EmitType01(cond, o.type(), ORR, 0, rn, rd, o);
|
| }
|
|
|
| -
|
| +// Moved to ARM32::AssemberARM32::orr()
|
| void Assembler::orrs(Register rd, Register rn, Operand o, Condition cond) {
|
| EmitType01(cond, o.type(), ORR, 1, rn, rd, o);
|
| }
|
|
|
| -
|
| -#if 0
|
| -// Moved to AssemblerARM32::mov(..FlexImm..)
|
| +// Moved to AssemblerARM32::mov()
|
| // TODO(kschimpf) other forms of move.
|
| void Assembler::mov(Register rd, Operand o, Condition cond) {
|
| EmitType01(cond, o.type(), MOV, 0, R0, rd, o);
|
|
|