diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2016-10-08 17:04:28 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2016-10-08 17:04:28 +0000 |
commit | 9c453de707ce714df89fa97e842933934ac3fc42 (patch) | |
tree | 722352f744e2a840d1bb6bb5bcfa4aaebf30d0ec /gcc/ada/gcc-interface/misc.c | |
parent | 36cbfdb06604b63e743d3644fdec7dd20d7c0843 (diff) | |
download | gcc-9c453de707ce714df89fa97e842933934ac3fc42.zip gcc-9c453de707ce714df89fa97e842933934ac3fc42.tar.gz gcc-9c453de707ce714df89fa97e842933934ac3fc42.tar.bz2 |
utils.c (convert): Add missing break.
* gcc-interface/utils.c (convert) <VECTOR_CST>: Add missing break.
Revert
2016-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc-interface/decl.c: Fix fall through comment formatting.
* gcc-interface/misc.c: Likewise.
* gcc-interface/trans.c: Likewise.
* gcc-interface/utils.c: Likewise.
* gcc-interface/utils2.c: Likewise.
From-SVN: r240890
Diffstat (limited to 'gcc/ada/gcc-interface/misc.c')
-rw-r--r-- | gcc/ada/gcc-interface/misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/gcc-interface/misc.c b/gcc/ada/gcc-interface/misc.c index fa3fdd7..236a083 100644 --- a/gcc/ada/gcc-interface/misc.c +++ b/gcc/ada/gcc-interface/misc.c @@ -157,7 +157,7 @@ gnat_handle_option (size_t scode, const char *arg, int value, int kind, case OPT_gant: warning (0, "%<-gnat%> misspelled as %<-gant%>"); - /* fall through */ + /* ... fall through ... */ case OPT_gnat: case OPT_gnatO: @@ -485,13 +485,13 @@ gnat_print_type (FILE *file, tree node, int indent) else print_node (file, "index type", TYPE_INDEX_TYPE (node), indent + 4); - /* fall through */ + /* ... fall through ... */ case ENUMERAL_TYPE: case BOOLEAN_TYPE: print_node_brief (file, "RM size", TYPE_RM_SIZE (node), indent + 4); - /* fall through */ + /* ... fall through ... */ case REAL_TYPE: print_node_brief (file, "RM min", TYPE_RM_MIN_VALUE (node), indent + 4); |