diff options
| author | Alexey Bataev <a.bataev@hotmail.com> | 2019-09-16 17:06:31 +0000 |
|---|---|---|
| committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-09-16 17:06:31 +0000 |
| commit | a00630785fc7bbc723950543b0d82b6a70bfc797 (patch) | |
| tree | 6cb70496615e6dc9b83af0da26874c80c1e6024c | |
| parent | 10151f661854e3ee4922662f1d0f62b327cbfa8c (diff) | |
| download | bcm5719-llvm-a00630785fc7bbc723950543b0d82b6a70bfc797.tar.gz bcm5719-llvm-a00630785fc7bbc723950543b0d82b6a70bfc797.zip | |
[OPENMP]Fix parsing/sema for function templates with declare simd.
Need to return original declaration group with FunctionTemplateDecl, not
the inner FunctionDecl, to correctly handle parsing of directives with
the templates parameters.
llvm-svn: 372011
| -rw-r--r-- | clang/lib/Sema/SemaOpenMP.cpp | 2 | ||||
| -rw-r--r-- | clang/test/OpenMP/declare_simd_ast_print.cpp | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaOpenMP.cpp b/clang/lib/Sema/SemaOpenMP.cpp index 97844cd5705..ef2ef8b261a 100644 --- a/clang/lib/Sema/SemaOpenMP.cpp +++ b/clang/lib/Sema/SemaOpenMP.cpp @@ -4889,7 +4889,7 @@ Sema::DeclGroupPtrTy Sema::ActOnOpenMPDeclareSimdDirective( const_cast<unsigned *>(LinModifiers.data()), LinModifiers.size(), NewSteps.data(), NewSteps.size(), SR); ADecl->addAttr(NewAttr); - return ConvertDeclToDeclGroup(ADecl); + return DG; } Sema::DeclGroupPtrTy diff --git a/clang/test/OpenMP/declare_simd_ast_print.cpp b/clang/test/OpenMP/declare_simd_ast_print.cpp index c09f8b42e6d..565dc2dfc04 100644 --- a/clang/test/OpenMP/declare_simd_ast_print.cpp +++ b/clang/test/OpenMP/declare_simd_ast_print.cpp @@ -21,6 +21,15 @@ void add_1(float *d) __attribute__((cold)); // CHECK-NEXT: void add_1(float *d) __attribute__((cold)); // +#pragma omp declare simd aligned(hp, hp2:V) +#pragma omp declare simd aligned(hp, hp2:V) +template <class C, int V> void h(C *hp, C *hp2, C *hq, C *lin) { +} +// CHECK-NEXT: #pragma omp declare simd aligned(hp: V) aligned(hp2: V) +// CHECK-NEXT: #pragma omp declare simd aligned(hp: V) aligned(hp2: V) +// CHECK-NEXT: template <class C, int V> void h(C *hp, C *hp2, C *hq, C *lin) { +// CHECK-NEXT: } + #pragma omp declare simd aligned(hp, hp2) template <class C> void h(C *hp, C *hp2, C *hq, C *lin) { } |

