Tue Jan 19 12:25:12 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)

* bfd.h: Update for bfd_asymbol_value bug fix.
This commit is contained in:
Ian Lance Taylor 1993-01-19 17:32:43 +00:00
parent 8b8a071eb2
commit 74e8194991
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ typedef int symtype; /* Who knows, yet? */
#define bfd_get_output_section(x) ((x)->section->output_section)
#define bfd_set_section(x,y) ((x)->section) = (y)
#define bfd_asymbol_base(x) ((x)->section->vma)
#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + x->value)
#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
#define bfd_asymbol_name(x) ((x)->name)
/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
#define bfd_asymbol_bfd(x) ((x)->the_bfd)