diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-03-11 00:17:26 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-03-11 00:17:26 +0000 |
commit | 13641953c583269b2ceb47c7a41a0005004b256e (patch) | |
tree | 21bcbaf9e2b8301361eba6b1ef5a5d66d6a82e4a /gas | |
parent | c230fbb6df869c5c39051ecb8b5dc7f59d7e8852 (diff) | |
download | gdb-13641953c583269b2ceb47c7a41a0005004b256e.zip gdb-13641953c583269b2ceb47c7a41a0005004b256e.tar.gz gdb-13641953c583269b2ceb47c7a41a0005004b256e.tar.bz2 |
* gas/h8300/ffxx1.s: Add .word 0 at the end to eliminate uncertainty as to
whether there should be trailing bytes in the output file.
* gas/h8300/ffxx1.d: Adjust reloc values to permit an addend value of
0x00000000ffffffff on 64-bit hosts. (I'm not sure if this is correct.) End
with "..." to match trailing zero bytes.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/gas/h8300/ffxx1.d | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/h8300/ffxx1.s | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gas/testsuite/gas/h8300/ffxx1.d b/gas/testsuite/gas/h8300/ffxx1.d index e542152..61b7596 100644 --- a/gas/testsuite/gas/h8300/ffxx1.d +++ b/gas/testsuite/gas/h8300/ffxx1.d @@ -16,7 +16,8 @@ Disassembly of section .text: 0+040e <delay> 79 01 00 00 mov.w #0x0,r1 0+0412 <deloop> 0b 01 adds #0x1,er1 0+0414 <deloop[+]2> 46 00 bne .0 \(416\) - RELOC: 0+0415 DISP8 deloop[+]0xffff+ + RELOC: 0+0415 DISP8 deloop[+]0x[0f]*ffffffff 0+0416 <deloop[+]4> 12 88 rotl r0l 0+0418 <deloop[+]6> 40 00 bra .0 \(41a\) - RELOC: 0+0419 DISP8 loop[+]0xffff+ + RELOC: 0+0419 DISP8 loop[+]0x[0f]*ffffffff +... diff --git a/gas/testsuite/gas/h8300/ffxx1.s b/gas/testsuite/gas/h8300/ffxx1.s index 005bd1f..53fc841 100644 --- a/gas/testsuite/gas/h8300/ffxx1.s +++ b/gas/testsuite/gas/h8300/ffxx1.s @@ -17,3 +17,4 @@ deloop: adds.w #1,r1 bne deloop:8 ;not = 0 rotl r0l bra loop:8 + .word 0 |