diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-01-19 05:05:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-01-19 05:05:27 +0000 |
commit | d7e34f67be0fc288cbb4fe984df4999a1155fd6a (patch) | |
tree | 3619dc1c19b947abd026a79f5cae23523bda046a /bfd/aoutx.h | |
parent | 13655af625eafc5397b50a7e108012a8d7898c30 (diff) | |
download | gdb-d7e34f67be0fc288cbb4fe984df4999a1155fd6a.zip gdb-d7e34f67be0fc288cbb4fe984df4999a1155fd6a.tar.gz gdb-d7e34f67be0fc288cbb4fe984df4999a1155fd6a.tar.bz2 |
* aoutx.h (translate_to_native_sym_flags): Set the type of a
BSF_WARNING symbol to N_WARNING.
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 a11b778..b8040cb 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; } |