| Index: runtime/vm/assembler_arm_test.cc
|
| ===================================================================
|
| --- runtime/vm/assembler_arm_test.cc (revision 40678)
|
| +++ runtime/vm/assembler_arm_test.cc (working copy)
|
| @@ -900,7 +900,7 @@
|
| __ clz(R1, R0);
|
| __ cmp(R1, Operand(0));
|
| __ b(&error, NE);
|
| - __ Lsr(R0, R0, 3);
|
| + __ Lsr(R0, R0, Operand(3));
|
| __ clz(R1, R0);
|
| __ cmp(R1, Operand(3));
|
| __ b(&error, NE);
|
| @@ -979,8 +979,8 @@
|
| Label skip;
|
|
|
| __ mov(R0, Operand(1));
|
| - __ Lsl(R0, R0, 31);
|
| - __ Lsr(R0, R0, 31);
|
| + __ Lsl(R0, R0, Operand(31));
|
| + __ Lsr(R0, R0, Operand(31));
|
| __ bx(LR);
|
| }
|
|
|
| @@ -996,8 +996,8 @@
|
| Label skip;
|
|
|
| __ mov(R0, Operand(1));
|
| - __ Lsl(R0, R0, 31);
|
| - __ Asr(R0, R0, 31);
|
| + __ Lsl(R0, R0, Operand(31));
|
| + __ Asr(R0, R0, Operand(31));
|
| __ bx(LR);
|
| }
|
|
|
|
|