summaryrefslogtreecommitdiffstats
path: root/test/OpenMP/target_update_ast_print.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make output of -ast-print a valid C++ code.Serge Pavlov2016-11-101-5/+5
| | | | | | | | | | | | | | | | | | | Output generated by option -ast-print looks like C/C++ code, and it really is for plain C. For C++ the produced output was not valid C++ code, but the differences were small. With this change the output is fixed and can be compiled. Tests are changed so that output produced by -ast-print is compiled again with the same flags and both outputs are compared. Option -ast-print is extensively used in clang tests but it itself was tested poorly, existing tests only checked that compiler did not crash. There are unit tests in file DeclPrinterTest.cpp, but they test only terse output mode. Differential Revision: https://reviews.llvm.org/D26452 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@286439 91177308-0d34-0410-b5e6-96231b3b80d8
* [OpenMP] Add the depend clause to target update construct (sema and parsing)Kelvin Li2016-06-221-12/+12
| | | | | | | | Differential Revision: http://reviews.llvm.org/D21532 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@273369 91177308-0d34-0410-b5e6-96231b3b80d8
* [OpenMP] Add the nowait clause to target update construct.Kelvin Li2016-06-201-11/+11
| | | | | | | Differential Revision: http://reviews.llvm.org/D21477 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@273190 91177308-0d34-0410-b5e6-96231b3b80d8
* [OpenMP] Parsing and sema support for the from clauseSamuel Antao2016-05-261-0/+7
| | | | | | | | | | | | | | | Summary: The patch contains the parsing and sema support for the `from` clause. Patch based on the original post by Kelvin Li. Reviewers: hfinkel, carlo.bertolli, kkwli0, arpith-jacob, ABataev Subscribers: caomhin, cfe-commits Differential Revision: http://reviews.llvm.org/D18488 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270882 91177308-0d34-0410-b5e6-96231b3b80d8
* [OpenMP] Parsing and sema support for the to clauseSamuel Antao2016-05-261-0/+45
Summary: The patch contains the parsing and sema support for the `to` clause. Patch based on the original post by Kelvin Li. Reviewers: carlo.bertolli, hfinkel, kkwli0, arpith-jacob, ABataev Subscribers: caomhin, cfe-commits Differential Revision: http://reviews.llvm.org/D18597 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270880 91177308-0d34-0410-b5e6-96231b3b80d8