diff options
Diffstat (limited to 'compiler/utils/assembler_thumb_test.cc')
| -rw-r--r-- | compiler/utils/assembler_thumb_test.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler/utils/assembler_thumb_test.cc b/compiler/utils/assembler_thumb_test.cc index e3a9580737..a171e59d98 100644 --- a/compiler/utils/assembler_thumb_test.cc +++ b/compiler/utils/assembler_thumb_test.cc @@ -309,13 +309,13 @@ TEST(Thumb2AssemblerTest, DataProcessingRegister) { // 16 bit variants. __ add(R0, R1, ShifterOperand()); __ sub(R0, R1, ShifterOperand()); - __ and_(R0, R1, ShifterOperand()); - __ orr(R0, R1, ShifterOperand()); - __ eor(R0, R1, ShifterOperand()); - __ bic(R0, R1, ShifterOperand()); - __ adc(R0, R1, ShifterOperand()); - __ sbc(R0, R1, ShifterOperand()); - __ rsb(R0, R1, ShifterOperand()); + __ and_(R0, R0, ShifterOperand(R1)); + __ orr(R0, R0, ShifterOperand(R1)); + __ eor(R0, R0, ShifterOperand(R1)); + __ bic(R0, R0, ShifterOperand(R1)); + __ adc(R0, R0, ShifterOperand(R1)); + __ sbc(R0, R0, ShifterOperand(R1)); + __ rsb(R0, R0, ShifterOperand(R1)); __ tst(R0, ShifterOperand(R1)); __ teq(R0, ShifterOperand(R1)); |