From b825de17b73f92c05ab174f02a221865702716f9 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Mon, 7 Dec 2015 10:51:44 +0000 Subject: [OPENMP 4.5] parsing/sema support for 'nogroup' clause. OpenMP 4.5 adds 'taskloop' and 'taskloop simd' directives. These directives have new 'nogroup' clause. Patch adds basic parsing/sema support for this clause. llvm-svn: 254899 --- clang/lib/Sema/TreeTransform.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'clang/lib/Sema/TreeTransform.h') diff --git a/clang/lib/Sema/TreeTransform.h b/clang/lib/Sema/TreeTransform.h index 9baa797188a..6d80d038a43 100644 --- a/clang/lib/Sema/TreeTransform.h +++ b/clang/lib/Sema/TreeTransform.h @@ -7544,6 +7544,13 @@ OMPClause *TreeTransform::TransformOMPSIMDClause(OMPSIMDClause *C) { return C; } +template +OMPClause * +TreeTransform::TransformOMPNogroupClause(OMPNogroupClause *C) { + // No need to rebuild this clause, no template-dependent parameters. + return C; +} + template OMPClause * TreeTransform::TransformOMPPrivateClause(OMPPrivateClause *C) { -- cgit v1.2.3