diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 7 | ||||
-rw-r--r-- | bfd/coff-arm.c | 2 | ||||
-rw-r--r-- | bfd/elfxx-riscv.c | 2 | ||||
-rw-r--r-- | bfd/sysdep.h | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c9c708c..aa0d0de 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +2020-01-17 Christian Biesinger <cbiesinger@google.com> + + * coff-arm.c: Fix spelling error (seperate). + * elfxx-riscv.c (riscv_parse_sv_or_non_std_ext): Fix spelling + error (seperate). + * sysdep.h (strnlen): Fix spelling error (seperate). + 2020-01-15 Lars Brinkhoff <lars@nocrew.org> PR 20694 diff --git a/bfd/coff-arm.c b/bfd/coff-arm.c index 84477ea..c2623d2 100644 --- a/bfd/coff-arm.c +++ b/bfd/coff-arm.c @@ -1154,7 +1154,7 @@ static const insn32 t2a6_bx_insn = 0xe12fff1e; /* The standard COFF backend linker does not cope with the special Thumb BRANCH23 relocation. The alternative would be to split the - BRANCH23 into seperate HI23 and LO23 relocations. However, it is a + BRANCH23 into separate HI23 and LO23 relocations. However, it is a bit simpler simply providing our own relocation driver. */ /* The reloc processing routine for the ARM/Thumb COFF linker. NOTE: diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c index 658629c..66e343f 100644 --- a/bfd/elfxx-riscv.c +++ b/bfd/elfxx-riscv.c @@ -1300,7 +1300,7 @@ riscv_parse_sv_or_non_std_ext (riscv_parse_subset_t *rps, if (*p != '\0' && *p != '_') { - rps->error_handler ("-march=%s: %s must seperate with _", + rps->error_handler ("-march=%s: %s must separate with _", march, ext_type_str); return NULL; } diff --git a/bfd/sysdep.h b/bfd/sysdep.h index b428a05..6528571 100644 --- a/bfd/sysdep.h +++ b/bfd/sysdep.h @@ -187,7 +187,7 @@ size_t strnlen (const char *, size_t); This is because the code in this directory is used to build a library which will be linked with code in other directories to form - programs. We want to maintain a seperate translation file for this + programs. We want to maintain a separate translation file for this directory however, rather than being forced to merge it with that of any program linked to libbfd. This is a library, so it cannot depend on the catalog currently loaded. |