diff options
author | Sterling Augustine <augustine.sterling@gmail.com> | 2015-03-10 11:34:50 +0000 |
---|---|---|
committer | Jiong Wang <jiong.wang@arm.com> | 2015-03-10 11:34:50 +0000 |
commit | 4e9aaefbd0042f5372509cd51ef2791a68aa30b0 (patch) | |
tree | b01c866bd03064c78cb2dea24f7f1d540de7c18b /gas/testsuite | |
parent | c8f89a3423101b25e57bc8fd55b060ce2ac45a55 (diff) | |
download | gdb-4e9aaefbd0042f5372509cd51ef2791a68aa30b0.zip gdb-4e9aaefbd0042f5372509cd51ef2791a68aa30b0.tar.gz gdb-4e9aaefbd0042f5372509cd51ef2791a68aa30b0.tar.bz2 |
[ARM]Fix "align directive causes MAP_DATA symbol to be lost"
gas/
2015-03-10 Renlin Li <renlin.li@arm.com>
* config/tc-arm.c (mapping_state): Remove first MAP_DATA emitting code.
(mapping_state_2): Emit first MAP_DATA symbol here.
gas/testsuite/
2015-03-05 Renlin Li <renlin.li@arm.com>
* gas/arm/dis-data.d: Adjust the desired output.
* gas/arm/dis-data2.d: Ditto.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 9 | ||||
-rw-r--r-- | gas/testsuite/gas/arm/dis-data.d | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/arm/dis-data2.d | 6 |
3 files changed, 14 insertions, 7 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 25f560a..03440c6 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,8 +1,15 @@ +2015-03-05 Renlin Li <renlin.li@arm.com> + + * gas/arm/dis-data.d: Adjust the desired output. + * gas/arm/dis-data2.d: Ditto. + 2015-03-10 Renlin Li <renlin.li@arm.com> * gas/aarch64/ldst-reg-uns-imm.d: Adjust expected output. * gas/aarch64/ldst-reg-unscaled-imm.d: Likewise. - * gas/aarch64/reloc-insn.d: Likewise.2015-03-10 Matthew Wahab <matthew.wahab@arm.com> + * gas/aarch64/reloc-insn.d: Likewise. + +2015-03-10 Matthew Wahab <matthew.wahab@arm.com> * gas/aarch64/codealign.d: Add test for code section alignment. * gas/aarch64/codealign.s: New file. diff --git a/gas/testsuite/gas/arm/dis-data.d b/gas/testsuite/gas/arm/dis-data.d index 40ca770..c389763 100644 --- a/gas/testsuite/gas/arm/dis-data.d +++ b/gas/testsuite/gas/arm/dis-data.d @@ -5,6 +5,6 @@ .*: +file format .*arm.* Disassembly of section \.text: -0x00000000 20010000 andcs r0, r1, r0 -0x00000004 000000f9 strdeq r0, \[r0\], -r9 -0x00000008 00004cd5 ldrdeq r4, \[r0\], -r5 +00000000 <.text> 20010000 .word 0x20010000 +00000004 <.text\+0x4> 000000f9 .word 0x000000f9 +00000008 <.text\+0x8> 00004cd5 .word 0x00004cd5 diff --git a/gas/testsuite/gas/arm/dis-data2.d b/gas/testsuite/gas/arm/dis-data2.d index ef7bb81..9c50654 100644 --- a/gas/testsuite/gas/arm/dis-data2.d +++ b/gas/testsuite/gas/arm/dis-data2.d @@ -5,6 +5,6 @@ .*: +file format .*arm.* Disassembly of section \.text: -00000000 <main> 20010000 andcs r0, r1, r0 -00000004 <main\+0x4> 000000f9 strdeq r0, \[r0\], -r9 -00000008 <main\+0x8> 00004cd5 ldrdeq r4, \[r0\], -r5 +00000000 <main> 20010000 .word 0x20010000 +00000004 <main\+0x4> 000000f9 .word 0x000000f9 +00000008 <main\+0x8> 00004cd5 .word 0x00004cd5 |