diff mbox series

[1/7] Fix up merge/formatting errors

Message ID f55d42cc902dfba9a0ae5fd5f670c535afb3f24e.1688151381.git.julian@codesourcery.com
State New
Headers show
Series OpenMP: lvalue parsing and "declare mapper" support | expand

Commit Message

Julian Brown June 30, 2023, 7:23 p.m. UTC
This patch fixes a couple of minor merge/formatting errors.

2023-06-30  Julian Brown  <julian@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 mbox series

Patch

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