From: Marek Polacek Date: Tue, 3 May 2016 06:40:46 +0000 (+0000) Subject: * c-common.h (enum c_omp_region_type): Remove stray comma. X-Git-Tag: upstream/12.2.0~47348 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d793c34440ebaafaf25e1c392e659e22b473992;p=platform%2Fupstream%2Fgcc.git * c-common.h (enum c_omp_region_type): Remove stray comma. From-SVN: r235802 --- diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 0afedff..fa750f7 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 1714284..b121138 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);