diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-03-08 15:03:50 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-03-08 15:03:50 +0000 |
commit | 74e1b52ea30e58687298440f309509a96cfb3bb4 (patch) | |
tree | 7faaeb586e690f691c569f8c19b6237b318261a9 /gas | |
parent | 8cf2e6ebbcb278b42dca22a153248bc47b607f98 (diff) | |
download | gdb-74e1b52ea30e58687298440f309509a96cfb3bb4.zip gdb-74e1b52ea30e58687298440f309509a96cfb3bb4.tar.gz gdb-74e1b52ea30e58687298440f309509a96cfb3bb4.tar.bz2 |
Allow .stab section to contain non PC relative addresses if -mrelocatable.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 6bc96ed..e58d279 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 8 09:36:05 1995 Michael Meissner <meissner@tiktok.cygnus.com> + + * config/tc-ppc.c (ppc_elf_validate_fix): Allow .stab sections to + have non PC relative relocations with -mrelocatable. + Wed Mar 8 02:57:53 1995 Ken Raeburn <raeburn@cujo.cygnus.com> * config/tc-m68k.c (opcode_ptr): Return pointer to const. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index d4fe8cc..8938026 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -581,7 +581,8 @@ ppc_elf_validate_fix (fixS *fixp, segT seg) && !fixp->fx_done && !fixp->fx_pcrel && fixp->fx_r_type <= BFD_RELOC_UNUSED - && strcmp (segment_name (seg), ".got2") != 0) + && strcmp (segment_name (seg), ".got2") != 0 + && strcmp (segment_name (seg), ".stab") != 0) { as_bad_where (fixp->fx_file, fixp->fx_line, "Relocation cannot be done when using -mrelocatable"); |