summaryrefslogtreecommitdiff
path: root/gcc/c-family/c-common.h
diff options
context:
space:
mode:
authormpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-03 06:40:46 +0000
committermpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-03 06:40:46 +0000
commit4341e0934e0ff3c251fb47ee9dbf55b72d06e329 (patch)
tree2a9ecb9cda199eb0b432fb7211c42e36f6c5b0b8 /gcc/c-family/c-common.h
parent150b7a5f32fcf2ad54e469cb3557029bfe901fd2 (diff)
downloadgcc-4341e0934e0ff3c251fb47ee9dbf55b72d06e329.tar.gz
* 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
Diffstat (limited to 'gcc/c-family/c-common.h')
-rw-r--r--gcc/c-family/c-common.h2
1 files changed, 1 insertions, 1 deletions
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);