diff options
author | Mark Wielaard <[email protected]> | 2016-11-02 13:29:26 +0100 |
---|---|---|
committer | Mark Wielaard <[email protected]> | 2016-11-10 11:59:00 +0100 |
commit | a3cc8182b2ae05290b0eafa74b70746d7befc0e4 (patch) | |
tree | 7d1f74f9f464b810a95dc7cd78c73930a938924a /libdw/encoded-value.h | |
parent | 33ca0e1b9dfb47c6f9836c7fc19d04bd34337767 (diff) |
Add GCC7 -Wimplicit-fallthrough support/fixes.
GCC7 will have a new -Wimplicit-fallthrough warning. It did catch one
small buglet in elflint option procession. So it seems useful to enable
to make sure all swatch case fallthroughs are deliberate.
Add configure check to detect whether gcc support -Wimplicit-fallthrough
and enable it. Add fixes and explicit fallthrough comments where necessary.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'libdw/encoded-value.h')
-rw-r--r-- | libdw/encoded-value.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdw/encoded-value.h b/libdw/encoded-value.h index 48d868fb..f0df4cec 100644 --- a/libdw/encoded-value.h +++ b/libdw/encoded-value.h @@ -64,6 +64,7 @@ encoded_value_size (const Elf_Data *data, const unsigned char e_ident[], if (*end++ & 0x80u) return end - p; } + return 0; default: return 0; |