diff options
author | Paul Brook <paul@codesourcery.com> | 2004-12-09 20:25:24 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2004-12-09 20:25:24 +0000 |
commit | be1b2b4b3b83b634b6848c952df617f62da311f7 (patch) | |
tree | 478dd71f52d4e48eb9d7d7e0cb3497f6eece5f20 /gas/config | |
parent | 45851e004a991f1e206ce499319ab485648c736b (diff) | |
download | gdb-be1b2b4b3b83b634b6848c952df617f62da311f7.zip gdb-be1b2b4b3b83b634b6848c952df617f62da311f7.tar.gz gdb-be1b2b4b3b83b634b6848c952df617f62da311f7.tar.bz2 |
* config/tc-arm.c (s_arm_unwind_fnend): Use R_ARM_PREL31 relocation
for function start.
* testsuite/gas/arm/unwind.d: Expect R_ARM_PREL31 relocations.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index ff2e4aa..009be15 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -14079,7 +14079,7 @@ s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED) /* Self relative offset of the function start. */ fix_new (frag_now, where, 4, unwind.proc_start, 0, 1, - BFD_RELOC_32); + BFD_RELOC_ARM_PREL31); if (val) /* Inline exception table entry. */ |