diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-10-15 11:01:39 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-10-15 11:01:39 -0700 |
commit | ae7683d2389973fbd368ee1ac77413a3cd1e4a7a (patch) | |
tree | fd96ff837772c35304b56eeed20aacf982f70ad9 /bfd/elflink.c | |
parent | 4dba69b9ba9d2f2f05f75de29f0d3bc655e75a48 (diff) | |
download | gdb-ae7683d2389973fbd368ee1ac77413a3cd1e4a7a.zip gdb-ae7683d2389973fbd368ee1ac77413a3cd1e4a7a.tar.gz gdb-ae7683d2389973fbd368ee1ac77413a3cd1e4a7a.tar.bz2 |
Fix typos in comments in _bfd_elf_merge_symbol
* elflink.c (_bfd_elf_merge_symbol): Fix typos in comments
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 839cebb..73fe469 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -1010,9 +1010,9 @@ _bfd_elf_merge_symbol (bfd *abfd, *matched = TRUE; else { - /* OLD_HIDDEN is true if the existing symbol is only visibile + /* OLD_HIDDEN is true if the existing symbol is only visible to the symbol with the same symbol version. NEW_HIDDEN is - true if the new symbol is only visibile to the symbol with + true if the new symbol is only visible to the symbol with the same symbol version. */ bfd_boolean old_hidden = h->versioned == versioned_hidden; bfd_boolean new_hidden = hi->versioned == versioned_hidden; |