diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-02-03 21:52:06 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-02-03 21:52:06 +0000 |
commit | fa2302b8edb517892558e9bdd4ace7d90feb7a5d (patch) | |
tree | 480bb1a2f24d4cbfee0d414a8d9fca611c8a6044 /bfd/aoutx.h | |
parent | e635796721d7fe29aab86fc7580faf16a2b87754 (diff) | |
download | gdb-fa2302b8edb517892558e9bdd4ace7d90feb7a5d.zip gdb-fa2302b8edb517892558e9bdd4ace7d90feb7a5d.tar.gz gdb-fa2302b8edb517892558e9bdd4ace7d90feb7a5d.tar.bz2 |
* aoutx.h (aout_reloc_index_to_section): Handle N_UNDF.
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r-- | bfd/aoutx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 1c8a08c..861ebb9 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -4003,6 +4003,7 @@ aout_reloc_index_to_section (abfd, indx) case N_BSS: return obj_bsssec (abfd); case N_ABS: + case N_UNDF: return &bfd_abs_section; default: abort (); |