diff options
author | Alan Modra <amodra@gmail.com> | 2004-10-10 13:58:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-10-10 13:58:05 +0000 |
commit | f12123c0d5ef931a2617b4b3bdb877556133c206 (patch) | |
tree | 483f9e7ea7bae9cb116dc8214e156ba7a620b295 /bfd/elf32-cris.c | |
parent | 3472e2e9990e20e2ab0b3326ee7a4c87acd3d715 (diff) | |
download | gdb-f12123c0d5ef931a2617b4b3bdb877556133c206.zip gdb-f12123c0d5ef931a2617b4b3bdb877556133c206.tar.gz gdb-f12123c0d5ef931a2617b4b3bdb877556133c206.tar.bz2 |
* libbfd-in.h (BFD_ASSERT, BFD_FAIL): Wrap macro body in do while.
* libbfd.h: Regnerate.
* elf32-cris.c: Add missing semicolon to BFD_ASSERTs.
* elf32-frv.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-ppc.c: Likewise.
* elf64-hppa.c: Likewise.
* elfxx-ia64.c: Likewise.
* opncls.c: Likewise.
Diffstat (limited to 'bfd/elf32-cris.c')
-rw-r--r-- | bfd/elf32-cris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c index 2e8a6b3..f0c88dc 100644 --- a/bfd/elf32-cris.c +++ b/bfd/elf32-cris.c @@ -2960,7 +2960,7 @@ cris_elf_print_private_bfd_data (abfd, ptr) { FILE *file = (FILE *) ptr; - BFD_ASSERT (abfd != NULL && ptr != NULL) + BFD_ASSERT (abfd != NULL && ptr != NULL); _bfd_elf_print_private_bfd_data (abfd, ptr); |