aboutsummaryrefslogtreecommitdiff
path: root/gdb/d-valprint.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2016-09-27 11:28:18 -0600
committerTom Tromey <tom@tromey.com>2018-05-04 22:04:46 -0600
commit565e0edacc48c86adfb12515ed6911c08c1f64d9 (patch)
tree6c3259b9f9037b2dfda5f38905c87c2358cc57d5 /gdb/d-valprint.c
parent621846f4e258167be2147894e013c85e42de1447 (diff)
downloadgdb-565e0edacc48c86adfb12515ed6911c08c1f64d9.zip
gdb-565e0edacc48c86adfb12515ed6911c08c1f64d9.tar.gz
gdb-565e0edacc48c86adfb12515ed6911c08c1f64d9.tar.bz2
Fix "obvious" fall-through warnings
This patch fixes the subset of -Wimplicit-fallthrough warnings that I considered obvious. In most cases it was obvious from context that falling through was desired; here I added the appropriate comment. In a couple of cases it seemed clear that a "break" was missing. ChangeLog 2018-05-04 Tom Tromey <tom@tromey.com> * riscv-tdep.c (riscv_isa_xlen): Add fall-through comment. * utils.c (can_dump_core) <LIMIT_CUR>: Add fall-through comment. * eval.c (fetch_subexp_value) <MEMORY_ERROR>: Add fall-through comment. * d-valprint.c (d_val_print) <TYPE_CODE_STRUCT>: Add fall-through comment. * coffread.c (coff_symtab_read) <C_LABEL>: Add fall-through comment.
Diffstat (limited to 'gdb/d-valprint.c')
-rw-r--r--gdb/d-valprint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/d-valprint.c b/gdb/d-valprint.c
index e2d8431..579d3c8 100644
--- a/gdb/d-valprint.c
+++ b/gdb/d-valprint.c
@@ -88,6 +88,7 @@ d_val_print (struct type *type, int embedded_offset,
stream, recurse, val, options);
if (ret == 0)
break;
+ /* Fall through. */
default:
c_val_print (type, embedded_offset, address, stream,
recurse, val, options);