From 1d793c34440ebaafaf25e1c392e659e22b473992 Mon Sep 17 00:00:00 2001 From: Marek Polacek Date: Tue, 3 May 2016 06:40:46 +0000 Subject: [PATCH] * c-common.h (enum c_omp_region_type): Remove stray comma. From-SVN: r235802 --- gcc/c-family/ChangeLog | 4 ++++ gcc/c-family/c-common.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 0afedff4ec9..fa750f765f8 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,7 @@ +2016-05-03 Marek Polacek + + * c-common.h (enum c_omp_region_type): Remove stray comma. + 2016-05-02 Cesar Philippidis * c-common.h (enum c_omp_region_type): Define. diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index 1714284bc2e..b1211384589 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -1267,7 +1267,7 @@ enum c_omp_region_type C_ORT_CILK = 1 << 1, C_ORT_ACC = 1 << 2, C_ORT_DECLARE_SIMD = 1 << 3, - C_ORT_OMP_DECLARE_SIMD = C_ORT_OMP | C_ORT_DECLARE_SIMD, + C_ORT_OMP_DECLARE_SIMD = C_ORT_OMP | C_ORT_DECLARE_SIMD }; extern tree c_finish_omp_master (location_t, tree); -- 2.30.2