diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2016-04-07 12:45:37 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2016-04-07 12:45:37 +0000 |
commit | 2af33e3d3ff1cd0535602cf50b06539949a2b16b (patch) | |
tree | bcb4ff52ff2115bc25342cf17c17e4b4c2d82f56 /clang/test/OpenMP/dump.cpp | |
parent | a1feff7024b552b579f302fea0030aaaa14624b3 (diff) | |
download | bcm5719-llvm-2af33e3d3ff1cd0535602cf50b06539949a2b16b.tar.gz bcm5719-llvm-2af33e3d3ff1cd0535602cf50b06539949a2b16b.zip |
[OPENMP 4.0] Parsing/sema analysis for 'simdlen' clause in 'declare simd'
construct.
OpenMP 4.0 defines '#pragma omp declare simd' construct that may have
associated 'simdlen' clause with constant positive expression as an
argument:
simdlen(<const_expr>)
Patch adds parsin and semantic analysis for simdlen clause.
llvm-svn: 265668
Diffstat (limited to 'clang/test/OpenMP/dump.cpp')
-rw-r--r-- | clang/test/OpenMP/dump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/OpenMP/dump.cpp b/clang/test/OpenMP/dump.cpp index b08df674ed5..378b53ce5bf 100644 --- a/clang/test/OpenMP/dump.cpp +++ b/clang/test/OpenMP/dump.cpp @@ -64,5 +64,5 @@ void foo(); // CHECK: `-FunctionDecl {{.+}} <line:63:1, col:10> col:6 foo 'void (void)' // CHECK-NEXT: |-OMPDeclareSimdDeclAttr {{.+}} <line:62:9, col:34> Implicit BS_Inbranch -// CHECK-NEXT: `-OMPDeclareSimdDeclAttr {{.+}} <line:61:9, col:25> Implicit BS_Undefined +// CHECK: `-OMPDeclareSimdDeclAttr {{.+}} <line:61:9, col:25> Implicit BS_Undefined |