aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-alpha.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2018-10-22 20:30:40 +1030
committerAlan Modra <amodra@gmail.com>2018-10-22 22:32:43 +1030
commite1748c54a200f45d6e88c232ca97171be23ba0b0 (patch)
treee91b79aeeb62fd80bf59d184fd68a960fbd5a64b /gas/config/tc-alpha.c
parent38cf168be5816b098cc05abffc482fc905db86a2 (diff)
downloadfsf-binutils-gdb-e1748c54a200f45d6e88c232ca97171be23ba0b0.zip
fsf-binutils-gdb-e1748c54a200f45d6e88c232ca97171be23ba0b0.tar.gz
fsf-binutils-gdb-e1748c54a200f45d6e88c232ca97171be23ba0b0.tar.bz2
Apply alpha BFD_RELOC_8 fixups
* config/tc-alpha.c (md_apply_fix): Handle BFD_RELOC_8 for fixups without a symbol. * testsuite/gas/all/gas.exp: Don't xfail forward test here.. * testsuite/gas/all/forward.d: ..do so here, removing alpha.
Diffstat (limited to 'gas/config/tc-alpha.c')
-rw-r--r--gas/config/tc-alpha.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 7fff858..7791811 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -5769,6 +5769,12 @@ md_apply_fix (fixS *fixP, valueT * valP, segT seg)
md_number_to_chars (fixpos, value, 2);
break;
+ case BFD_RELOC_8:
+ if (fixP->fx_pcrel)
+ fixP->fx_r_type = BFD_RELOC_8_PCREL;
+ size = 1;
+ goto do_reloc_xx;
+
case BFD_RELOC_16:
if (fixP->fx_pcrel)
fixP->fx_r_type = BFD_RELOC_16_PCREL;