diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-04-20 12:28:00 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-04-20 12:28:00 +0000 |
commit | e7f9d279d966f95b0a279582657e6db51b582597 (patch) | |
tree | 0f278528cbef168755f7c849034ee18d5b1a252f /gas | |
parent | 06897b50b3d7d4c88d4952f1d92e8d0fae9a3628 (diff) | |
download | gdb-e7f9d279d966f95b0a279582657e6db51b582597.zip gdb-e7f9d279d966f95b0a279582657e6db51b582597.tar.gz gdb-e7f9d279d966f95b0a279582657e6db51b582597.tar.bz2 |
gas/testsuite/
2005-04-20 Jan Beulich <jbeulich@novell.com>
* gas/elf/struct.s: Adjust to not get into alignment issues.
* gas/elf/struct.d: Adjust for the above and the test's name.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/struct.d | 8 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/struct.s | 2 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 98b8404..1f0f7a2 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-04-20 Jan Beulich <jbeulich@novell.com> + + * gas/elf/struct.s: Adjust to not get into alignment issues. + * gas/elf/struct.d: Adjust for the above and the test's name. + 2005-04-19 H.J. Lu <hongjiu.lu@intel.com> * gas/i386/padlock.d: Updated. diff --git a/gas/testsuite/gas/elf/struct.d b/gas/testsuite/gas/elf/struct.d index a681068..420c6e5 100644 --- a/gas/testsuite/gas/elf/struct.d +++ b/gas/testsuite/gas/elf/struct.d @@ -1,10 +1,10 @@ #nm: --extern-only -#name: struct +#name: ELF struct # Test the .struct pseudo-op. 0+0 D l1 0+4 D l2 -0+1 A w1 -0+3 A w2 -0+5 A w3 +0+2 A w1 +0+4 A w2 +0+6 A w3 diff --git a/gas/testsuite/gas/elf/struct.s b/gas/testsuite/gas/elf/struct.s index f84f93e..abbd3f0 100644 --- a/gas/testsuite/gas/elf/struct.s +++ b/gas/testsuite/gas/elf/struct.s @@ -1,7 +1,7 @@ .globl w1, w2, w3, l1, l2 .data l1: .long 0 - .struct 1 + .struct 2 w1: .short 0 w2: .short 0 w3: .short 0 |