diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-04-21 18:09:52 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-04-21 18:09:52 +0000 |
commit | 3c7b9c2c544319e9f148ef013e8706b1e484e4d5 (patch) | |
tree | 6f1bf375050d2bb96297c3f1a815a953ef3fc252 /gas/testsuite | |
parent | 0b66f3173809e422f3dfbab2a8afff7fb9fc0ef3 (diff) | |
download | gdb-3c7b9c2c544319e9f148ef013e8706b1e484e4d5.zip gdb-3c7b9c2c544319e9f148ef013e8706b1e484e4d5.tar.gz gdb-3c7b9c2c544319e9f148ef013e8706b1e484e4d5.tar.bz2 |
Properly handle ".equ symbol, reg + NUM" in x86 Intel syntax.
gas/
2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
PR gas/11509
* config/tc-i386-intel.c (i386_intel_simplify_register): New.
(i386_intel_simplify): Use i386_is_register and
i386_intel_simplify_register. Set X_md for O_register and
check X_md for O_constant.
(i386_intel_operand): Use i386_is_register.
* config/tc-i386.c (i386_is_register): New.
(x86_cons): Initialize the X_md field. Use i386_is_register.
(parse_register): Use i386_is_register.
(tc_x86_parse_to_dw2regnum): Likewise.
gas/testsuite/
2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
PR gas/11509
* gas/i386/equ.s: Add tests for ".equ symbol, reg + NUM".
* gas/i386/equ.d: Updated.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/equ.d | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/equ.s | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index f5522ad..9b36f2a 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-04-21 H.J. Lu <hongjiu.lu@intel.com> + + PR gas/11509 + * gas/i386/equ.s: Add tests for ".equ symbol, reg + NUM". + * gas/i386/equ.d: Updated. + 2010-04-20 Nick Clifton <nickc@redhat.com> PR gas/11507 diff --git a/gas/testsuite/gas/i386/equ.d b/gas/testsuite/gas/i386/equ.d index c23616f..0f270a6 100644 --- a/gas/testsuite/gas/i386/equ.d +++ b/gas/testsuite/gas/i386/equ.d @@ -22,4 +22,6 @@ Disassembly of section .text: [ 0-9a-f]+:[ 0-9a-f]+mov[ ]+%gs:\(%edx,%edx,8\),%edx [ 0-9a-f]+:[ 0-9a-f]+fadd[ ]+%st\(1\),%st [ 0-9a-f]+:[ 0-9a-f]+fadd[ ]+%st\(7\),%st +[ 0-9a-f]+:[ 0-9a-f]+mov[ ]+0x4\(%edx\),%eax +[ 0-9a-f]+:[ 0-9a-f]+mov[ ]+0x4\(%edx\),%eax #pass diff --git a/gas/testsuite/gas/i386/equ.s b/gas/testsuite/gas/i386/equ.s index 94ec81d..e15148a 100644 --- a/gas/testsuite/gas/i386/equ.s +++ b/gas/testsuite/gas/i386/equ.s @@ -39,6 +39,9 @@ _start: fadd x .equ x, st(7) fadd x + .equ r, edx + 4 + mov eax, [r] + mov eax, [r] .if s <> gs .err |