diff options
author | David MacKenzie <djm@cygnus> | 1994-01-21 17:50:37 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-01-21 17:50:37 +0000 |
commit | 6de495621bad70a62fee80bfbf3248a73c858a4f (patch) | |
tree | 03f72a2bc17c4cb5b2d8358a9248b32225e325b9 /bfd/aoutx.h | |
parent | cd5ee294397a341ad9e26c6b260d8b61a296e6c1 (diff) | |
download | gdb-6de495621bad70a62fee80bfbf3248a73c858a4f.zip gdb-6de495621bad70a62fee80bfbf3248a73c858a4f.tar.gz gdb-6de495621bad70a62fee80bfbf3248a73c858a4f.tar.bz2 |
* aoutx.h (translate_to_native_sym_flags), bfd-in.h (bfd_ec),
oasys.c (oasys_write_sections): Rename
bfd_error_nonrepresentable_section to nonrepresentable_section.
None of the other bfd error names start with "bfd_error".
Remove errors symbol_not_found and no_relocation_info, which seem
to be unused.
* bfd-in2.h: Regenerated.
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r-- | bfd/aoutx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 0366590..4110719 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -1331,14 +1331,14 @@ DEFUN(translate_to_native_sym_flags,(sym_pointer, cache_ptr, abfd), else if (bfd_get_output_section(cache_ptr) == NULL) { /* Protect the bfd_is_com_section call. This case occurs, e.g., for the *DEBUG* section of a COFF file. */ - bfd_error = bfd_error_nonrepresentable_section; + bfd_error = nonrepresentable_section; return false; } else if (bfd_is_com_section (bfd_get_output_section (cache_ptr))) { sym_pointer->e_type[0] = (N_UNDF | N_EXT); } else { - bfd_error = bfd_error_nonrepresentable_section; + bfd_error = nonrepresentable_section; return false; } |