[GAS][ARM][PR20827]Fix gas error for two register form instruction (pre-UAL syntax).
authorRenlin Li <renlin.li@arm.com>
Mon, 21 Nov 2016 12:06:04 +0000 (12:06 +0000)
committerRenlin Li <renlin.li@arm.com>
Mon, 21 Nov 2016 12:06:04 +0000 (12:06 +0000)
gas/

2016-11-21  Renlin Li  <renlin.li@arm.com>

PR gas/20827
* config/tc-arm.c (encode_arm_shift): Don't assert for operands not
presented.
* testsuite/gas/arm/add-shift-two.d: New.
* testsuite/gas/arm/add-shift-two.s: New.

gas/ChangeLog
gas/config/tc-arm.c
gas/testsuite/gas/arm/add-shift-two.d [new file with mode: 0644]
gas/testsuite/gas/arm/add-shift-two.s [new file with mode: 0644]

index 589c986c9099d91b024148eab597f69414b98462..134f24b5118f5aaf4ae8e4648d8561c2aeebb0bc 100644 (file)
@@ -1,3 +1,11 @@
+2016-11-21  Renlin Li  <renlin.li@arm.com>
+
+       PR gas/20827
+       * config/tc-arm.c (encode_arm_shift): Don't assert for operands not
+       presented.
+       * testsuite/gas/arm/add-shift-two.d: New.
+       * testsuite/gas/arm/add-shift-two.s: New.
+
 2016-11-21  Alan Modra  <amodra@gmail.com>
 
        * configure.ac: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
index 9a12bcc44d96cccc2ea0ec0411e743d9fb4f0a7d..e37d354036066a219bc941188d1a7c00c4597d53 100644 (file)
@@ -7435,8 +7435,11 @@ encode_arm_shift (int i)
       int index;
       for (index = 0; index <= i; ++index)
        {
-         gas_assert (inst.operands[index].present);
-         if (inst.operands[index].isreg && inst.operands[index].reg == REG_PC)
+         /* Check the operand only when it's presented.  In pre-UAL syntax,
+            if the destination register is the same as the first operand, two
+            register form of the instruction can be used.  */
+         if (inst.operands[index].present && inst.operands[index].isreg
+             && inst.operands[index].reg == REG_PC)
            as_warn (UNPRED_REG ("r15"));
        }
 
diff --git a/gas/testsuite/gas/arm/add-shift-two.d b/gas/testsuite/gas/arm/add-shift-two.d
new file mode 100644 (file)
index 0000000..46a58c5
--- /dev/null
@@ -0,0 +1,11 @@
+# name: Two register form of data processing instruction with register shifted register operand
+# as:
+# objdump: -dr
+
+.*: +file format .*arm.*
+
+Disassembly of section .text:
+
+00000000 <.text>:
+   0:  e0855014        add     r5, r5, r4, lsl r0
+   4:  e0855014        add     r5, r5, r4, lsl r0
diff --git a/gas/testsuite/gas/arm/add-shift-two.s b/gas/testsuite/gas/arm/add-shift-two.s
new file mode 100644 (file)
index 0000000..72560cd
--- /dev/null
@@ -0,0 +1,5 @@
+       .arch armv7-a
+       .text
+       # PR 20827
+       add r5, r4, lsl r0
+       add r5, r5, r4, lsl r0
This page took 0.041292 seconds and 4 git commands to generate.