aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-typeck.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2008-06-06 13:32:25 +0000
committerJakub Jelinek <jakub@redhat.com>2008-06-06 13:32:25 +0000
commit78274d1acc9f5b46a4db19920cddc0e91a7762a9 (patch)
tree2e56f0844698c8fcd0b85de230450040dc766dfa /gcc/c-typeck.c
parent8f4ee849279277ed01744f0ca4c6944d0f1de766 (diff)
svn merge -r136352:136430 svn+ssh://gcc.gnu.org/svn/gcc/branches/gomp-3_0-branch/tuples-gomp-3_0-branch
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/tuples-gomp-3_0-branch@136436 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-typeck.c')
-rw-r--r--gcc/c-typeck.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c
index 533e9411ba5..23880d16a43 100644
--- a/gcc/c-typeck.c
+++ b/gcc/c-typeck.c
@@ -8681,6 +8681,8 @@ c_begin_omp_parallel (void)
return block;
}
+/* Generate OMP_PARALLEL, with CLAUSES and BLOCK as its compound statement. */
+
tree
c_finish_omp_parallel (tree clauses, tree block)
{
@@ -8696,6 +8698,8 @@ c_finish_omp_parallel (tree clauses, tree block)
return add_stmt (stmt);
}
+/* Like c_begin_compound_stmt, except force the retention of the BLOCK. */
+
tree
c_begin_omp_task (void)
{
@@ -8707,6 +8711,8 @@ c_begin_omp_task (void)
return block;
}
+/* Generate OMP_TASK, with CLAUSES and BLOCK as its compound statement. */
+
tree
c_finish_omp_task (tree clauses, tree block)
{