diff options
author | Stephen Casner <casner@acm.org> | 2020-06-04 12:34:17 -0700 |
---|---|---|
committer | Stephen Casner <casner@acm.org> | 2020-06-04 12:34:17 -0700 |
commit | 3b9313c4205b90e19fe2993f2e47d19fe1238894 (patch) | |
tree | d2a8a4c05aabeff54063189d821814b716598b0f | |
parent | d413a6233ac3bc0afe6ff5261df1421854334a6d (diff) | |
download | binutils-3b9313c4205b90e19fe2993f2e47d19fe1238894.zip binutils-3b9313c4205b90e19fe2993f2e47d19fe1238894.tar.gz binutils-3b9313c4205b90e19fe2993f2e47d19fe1238894.tar.bz2 |
Correct a comment.
* bfd/aoutx.h (translate_symbol_table): Comment had external and
internal swapped.
* bfd/pdp11.c (translate_symbol_table): Likewise.
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/aoutx.h | 2 | ||||
-rw-r--r-- | bfd/pdp11.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fb87353..f88e5e8 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2020-06-04 Stephen Casner <casner@acm.org> + + * aoutx.h (translate_symbol_table): Comment had external and + internal swapped. + * pdp11.c (translate_symbol_table): Likewise. + 2020-06-04 H.J. Lu <hongjiu.lu@intel.com> * elfxx-x86.h (elf_x86_link_hash_table): Remove target_id. diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 8fe2a62..d352a1a 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -1680,7 +1680,7 @@ NAME (aout, make_empty_symbol) (bfd *abfd) return &new_symbol->symbol; } -/* Translate a set of internal symbols into external symbols. */ +/* Translate a set of external symbols into internal symbols. */ bfd_boolean NAME (aout, translate_symbol_table) (bfd *abfd, diff --git a/bfd/pdp11.c b/bfd/pdp11.c index d41aefc..e436374 100644 --- a/bfd/pdp11.c +++ b/bfd/pdp11.c @@ -1494,7 +1494,7 @@ NAME (aout, make_empty_symbol) (bfd *abfd) return &new_symbol_type->symbol; } -/* Translate a set of internal symbols into external symbols. */ +/* Translate a set of external symbols into internal symbols. */ bfd_boolean NAME (aout, translate_symbol_table) (bfd *abfd, |