This patch fixes a couple of minor merge/formatting errors. 2023-06-30 Julian Brown <jul...@codesourcery.com>
gcc/fortran/ * parse.cc (decode_omp_directive): Add missing break. gcc/ * gimplify.cc (gimplify_adjust_omp_clauses): Fix indentation. --- gcc/fortran/parse.cc | 1 + gcc/gimplify.cc | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/fortran/parse.cc b/gcc/fortran/parse.cc index 73f15608260..2467adf5836 100644 --- a/gcc/fortran/parse.cc +++ b/gcc/fortran/parse.cc @@ -902,6 +902,7 @@ decode_omp_directive (void) break; case 't': matchs ("tile sizes", gfc_match_omp_tile, ST_OMP_TILE); + break; case 'u': matchs ("unroll", gfc_match_omp_unroll, ST_OMP_UNROLL); break; diff --git a/gcc/gimplify.cc b/gcc/gimplify.cc index 1e90d2ed031..707a0c046de 100644 --- a/gcc/gimplify.cc +++ b/gcc/gimplify.cc @@ -13996,8 +13996,8 @@ gimplify_adjust_omp_clauses (gimple_seq *pre_p, gimple_seq body, tree *list_p, fb_lvalue) == GS_ERROR) remove = true; gimplify_omp_ctxp = ctx; - break; - } + break; + } if ((code == OMP_TARGET || code == OMP_TARGET_DATA -- 2.25.1