diff options
author | Alan Modra <amodra@gmail.com> | 2016-10-05 16:44:07 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-10-06 09:40:30 +1030 |
commit | 1e0f0b4d0191263e35d81a3670d56bf639be274a (patch) | |
tree | 28044a8a1465af050024a631369d532e8a8f162f /binutils/strings.c | |
parent | 2b804145796e948fa4c025c07eb201e700281e6b (diff) | |
download | gdb-1e0f0b4d0191263e35d81a3670d56bf639be274a.zip gdb-1e0f0b4d0191263e35d81a3670d56bf639be274a.tar.gz gdb-1e0f0b4d0191263e35d81a3670d56bf639be274a.tar.bz2 |
-Wimplicit-fallthrough noreturn fixes
binutils/
* cxxfilt.c (usage): Add ATTRIBUTE_NORETURN.
* elfedit.c (usage): Likewise.
* nm.c (usage): Likewise.
* objcopy.c (copy_usage, strip_usage): Likewise.
* srconv.c (show_usage): Likewise.
* strings.c (usage): Likewise.
* sysdump.c (show_usage): Likewise.
* srconv.c: Remove unneeded forward function declarations.
* strings.c: Likewise.
* sysdump.c: Likewise.
gas/
* as.h (as_assert): Add ATTRIBUTE_NORETURN.
Diffstat (limited to 'binutils/strings.c')
-rw-r--r-- | binutils/strings.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/binutils/strings.c b/binutils/strings.c index bc49bec..58b7e8a 100644 --- a/binutils/strings.c +++ b/binutils/strings.c @@ -146,12 +146,9 @@ typedef struct bfd_size_type filesize; } filename_and_size_t; -static void strings_a_section (bfd *, asection *, void *); -static bfd_boolean strings_object_file (const char *); static bfd_boolean strings_file (char *); static void print_strings (const char *, FILE *, file_ptr, int, int, char *); -static void usage (FILE *, int); -static long get_char (FILE *, file_ptr *, int *, char **); +static void usage (FILE *, int) ATTRIBUTE_NORETURN; int main (int, char **); |