diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2009-03-07 23:38:13 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2009-03-07 23:38:13 +0000 |
commit | f501de170c57009d6df7b51827e517107ab3c66f (patch) | |
tree | 16b8b80b7f4e8a2532def1014fb6185e48f454d6 /bfd/som.c | |
parent | b264ba2c90b34b65fbe7acf877465d5d0f64a902 (diff) | |
download | gdb-f501de170c57009d6df7b51827e517107ab3c66f.zip gdb-f501de170c57009d6df7b51827e517107ab3c66f.tar.gz gdb-f501de170c57009d6df7b51827e517107ab3c66f.tar.bz2 |
PR binutils/9921
* som.c (som_bfd_derive_misc_symbol_info): Set symbol type ST_ABSOLUTE
for unknown symbols in absolute section.
Diffstat (limited to 'bfd/som.c')
-rw-r--r-- | bfd/som.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* bfd back-end for HP PA-RISC SOM objects. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 + 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc. Contributed by the Center for Software Science at the @@ -4015,7 +4015,9 @@ som_bfd_derive_misc_symbol_info (bfd *abfd ATTRIBUTE_UNUSED, section (ST_DATA for DATA sections, ST_CODE for CODE sections). */ else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN) { - if (sym->section->flags & SEC_CODE) + if (bfd_is_abs_section (sym->section)) + info->symbol_type = ST_ABSOLUTE; + else if (sym->section->flags & SEC_CODE) info->symbol_type = ST_CODE; else info->symbol_type = ST_DATA; |