diff options
Diffstat (limited to 'bfd/aout-cris.c')
-rw-r--r-- | bfd/aout-cris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/aout-cris.c b/bfd/aout-cris.c index feed5ed..31b0035 100644 --- a/bfd/aout-cris.c +++ b/bfd/aout-cris.c @@ -169,14 +169,14 @@ MY (swap_ext_reloc_out) (bfd *abfd, from the abs section, or as a symbol which has an abs value. check for that here. */ - if (bfd_is_abs_section (bfd_get_section (sym))) + if (bfd_is_abs_section (bfd_asymbol_section (sym))) { r_extern = 0; r_index = N_ABS; } else if ((sym->flags & BSF_SECTION_SYM) == 0) { - if (bfd_is_und_section (bfd_get_section (sym)) + if (bfd_is_und_section (bfd_asymbol_section (sym)) /* Remember to check for weak symbols; they count as global. */ || (sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0) r_extern = 1; |