diff options
author | DJ Delorie <dj@redhat.com> | 2008-11-19 16:43:16 -0500 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2008-11-19 16:43:16 -0500 |
commit | 34323e64d2dfc62803488596704de37e20912481 (patch) | |
tree | af5727e124bd4e8551bf8a3aec34d28db521a02b | |
parent | 01d685ccfd05a34b1eff959bceae99418b7cc95d (diff) | |
download | gcc-34323e64d2dfc62803488596704de37e20912481.zip gcc-34323e64d2dfc62803488596704de37e20912481.tar.gz gcc-34323e64d2dfc62803488596704de37e20912481.tar.bz2 |
below100.S (.chip_info): Use position-independent expressions for the fillers.
* gcc.target/xstormy16/below100.S (.chip_info): Use
position-independent expressions for the fillers.
From-SVN: r142020
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/xstormy16/below100.S | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 305a992..83490a9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-11-19 DJ Delorie <dj@redhat.com> + + * gcc.target/xstormy16/below100.S (.chip_info): Use + position-independent expressions for the fillers. + 2008-11-19 Jason Merrill <jason@redhat.com> PR c++/36410 diff --git a/gcc/testsuite/gcc.target/xstormy16/below100.S b/gcc/testsuite/gcc.target/xstormy16/below100.S index f85c6d6..27faa2e 100644 --- a/gcc/testsuite/gcc.target/xstormy16/below100.S +++ b/gcc/testsuite/gcc.target/xstormy16/below100.S @@ -154,13 +154,13 @@ _fini: /*************************************/ /** C0-CF : Fixed string **/ /*************************************/ - .ascii "CHIPINFORMATION" -1: .space (0xd0-1b),0x00 +1: .ascii "CHIPINFORMATION" +2: .space (0x10-(2b-1b)),0x00 /*************************************/ /** D0-DF : Chipname **/ /*************************************/ - .ascii "LC59_32K" -2: .space (0xe0-2b),0x00 +1: .ascii "LC59_32K" +2: .space (0x10-(2b-1b)),0x00 /*************************************/ /** E0-E1 : Format version(BCD4) **/ /*************************************/ |