Build unwind info for more than just .text section.
This commit is contained in:
parent
7770f16a57
commit
1d3d5051d1
@ -1,3 +1,8 @@
|
|||||||
|
2001-01-16 Alan Modra <alan@linuxcare.com.au>
|
||||||
|
|
||||||
|
* config/tc-hppa.c (pa_build_unwind_subspace): Build unwind
|
||||||
|
depending on section flags, not just for .text.
|
||||||
|
|
||||||
2001-01-15 Jim Wilson <wilson@redhat.com>
|
2001-01-15 Jim Wilson <wilson@redhat.com>
|
||||||
|
|
||||||
* config/tc-ia64.c (ia64_flush_insns): Handle unwind directives
|
* config/tc-ia64.c (ia64_flush_insns): Handle unwind directives
|
||||||
|
@ -6053,7 +6053,9 @@ pa_build_unwind_subspace (call_info)
|
|||||||
int reloc;
|
int reloc;
|
||||||
char c, *p;
|
char c, *p;
|
||||||
|
|
||||||
if (now_seg != text_section)
|
if ((bfd_get_section_flags (stdoutput, now_seg)
|
||||||
|
& (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
|
||||||
|
!= (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
reloc = R_PARISC_SEGREL32;
|
reloc = R_PARISC_SEGREL32;
|
||||||
|
Loading…
Reference in New Issue
Block a user