From d7e34f67be0fc288cbb4fe984df4999a1155fd6a Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 19 Jan 1994 05:05:27 +0000 Subject: [PATCH] * aoutx.h (translate_to_native_sym_flags): Set the type of a BSF_WARNING symbol to N_WARNING. --- bfd/ChangeLog | 5 +++++ bfd/aoutx.h | 1 + 2 files changed, 6 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9058bc9794..e13519c22f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Wed Jan 19 00:02:54 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * aoutx.h (translate_to_native_sym_flags): Set the type of a + BSF_WARNING symbol to N_WARNING. + Tue Jan 18 16:43:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * aoutx.h (aout_link_add_symbols): Increment sym_hash as well as p diff --git a/bfd/aoutx.h b/bfd/aoutx.h index a11b7786b1..b8040cbc06 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -1337,6 +1337,7 @@ DEFUN(translate_to_native_sym_flags,(sym_pointer, cache_ptr, abfd), if (cache_ptr->flags & (BSF_WARNING)) { + sym_pointer->e_type[0] = N_WARNING; (sym_pointer+1)->e_type[0] = 1; }