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/utils2.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/utils2.c')
-rw-r--r-- | gcc/ada/gcc-interface/utils2.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ada/gcc-interface/utils2.c b/gcc/ada/gcc-interface/utils2.c index 8cb97fb..1e5b3ef 100644 --- a/gcc/ada/gcc-interface/utils2.c +++ b/gcc/ada/gcc-interface/utils2.c @@ -180,7 +180,7 @@ known_alignment (tree exp) return known_alignment (t); } - /* fall through */ + /* ... fall through ... */ default: /* For other pointer expressions, we assume that the pointed-to object @@ -1011,7 +1011,7 @@ build_binary_op (enum tree_code op_code, tree result_type, if (!operation_type) operation_type = TREE_TYPE (left_type); - /* fall through */ + /* ... fall through ... */ case ARRAY_RANGE_REF: /* First look through conversion between type variants. Note that @@ -1230,7 +1230,7 @@ build_binary_op (enum tree_code op_code, tree result_type, op_code = MINUS_EXPR; modulus = NULL_TREE; - /* fall through */ + /* ... fall through ... */ case PLUS_EXPR: case MINUS_EXPR: @@ -1244,7 +1244,7 @@ build_binary_op (enum tree_code op_code, tree result_type, = gnat_type_for_mode (TYPE_MODE (operation_type), TYPE_UNSIGNED (operation_type)); - /* fall through */ + /* ... fall through ... */ default: common: @@ -1466,7 +1466,7 @@ build_unary_op (enum tree_code op_code, tree result_type, tree operand) return build_unary_op (ADDR_EXPR, result_type, TREE_OPERAND (operand, 0)); - /* fallthru */ + /* ... fallthru ... */ case VIEW_CONVERT_EXPR: /* If this just a variant conversion or if the conversion doesn't @@ -1487,7 +1487,7 @@ build_unary_op (enum tree_code op_code, tree result_type, tree operand) case CONST_DECL: operand = DECL_CONST_CORRESPONDING_VAR (operand); - /* fall through */ + /* ... fall through ... */ default: common: @@ -1648,7 +1648,7 @@ build_unary_op (enum tree_code op_code, tree result_type, tree operand) } } - /* fall through */ + /* ... fall through ... */ default: gcc_assert (operation_type == base_type); |