Chromium Code Reviews| Index: src/DartARM32/assembler_arm.cc |
| diff --git a/src/DartARM32/assembler_arm.cc b/src/DartARM32/assembler_arm.cc |
| index 545ef878f80cd6019e42597a17fd90c9d4f5efd4..881fa8e7aa82b003765e865fd264ed0477f060c2 100644 |
| --- a/src/DartARM32/assembler_arm.cc |
| +++ b/src/DartARM32/assembler_arm.cc |
| @@ -272,18 +272,17 @@ 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..) |
|
Jim Stichnoth
2015/10/29 22:21:52
Change this comment like you did in the .h file?
Karl
2015/10/30 14:42:25
Done.
|
| // TODO(kschimpf) other forms of move. |
| void Assembler::mov(Register rd, Operand o, Condition cond) { |