From: mpolacek Date: Tue, 3 May 2016 06:40:46 +0000 (+0000) Subject: * c-common.h (enum c_omp_region_type): Remove stray comma. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4341e0934e0ff3c251fb47ee9dbf55b72d06e329;p=thirdparty%2Fgcc.git * c-common.h (enum c_omp_region_type): Remove stray comma. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235802 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 0afedff4ec96..fa750f765f8e 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 1714284bc2e8..b12113845893 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);