diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2018-02-14 17:38:47 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2018-02-14 17:38:47 +0000 |
commit | cbecfdfefe11ddc11f9c8efbe894c39d64d74f09 (patch) | |
tree | 555e5468fda0e086b665b3c537623afaef07eda7 /clang/test/OpenMP/distribute_simd_ast_print.cpp | |
parent | 48f671bb2713fba48dc679008121af5c60d611a3 (diff) | |
download | bcm5719-llvm-cbecfdfefe11ddc11f9c8efbe894c39d64d74f09.tar.gz bcm5719-llvm-cbecfdfefe11ddc11f9c8efbe894c39d64d74f09.zip |
[OpenMP] Fix trailing space when printing pragmas, by Joel. E. Denny
Summary:
-ast-print prints omp pragmas with a trailing space. While this
behavior is likely of little concern to most users, surely it's
unintentional, and it's annoying for some source-level work I'm
pursuing. This patch focuses on omp pragmas, but it also fixes
init_seg and loop hint pragmas because they share implementation.
The testing strategy here is to add usually just one '{{$}}' per
relevant -ast-print test file. This seems to achieve good code
coverage. However, this strategy is probably easy to forget as the
tests evolve. That's probably fine as this fix is far from critical.
The main goal of the testing is to aid the initial review.
This patch also adds a fixme for "#pragma unroll", which prints as
"#pragma unroll (enable)", which is invalid syntax.
Reviewers: ABataev
Reviewed By: ABataev
Subscribers: guansong, cfe-commits
Differential Revision: https://reviews.llvm.org/D43204
llvm-svn: 325145
Diffstat (limited to 'clang/test/OpenMP/distribute_simd_ast_print.cpp')
-rw-r--r-- | clang/test/OpenMP/distribute_simd_ast_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/OpenMP/distribute_simd_ast_print.cpp b/clang/test/OpenMP/distribute_simd_ast_print.cpp index e866bab0ab9..5133db695b3 100644 --- a/clang/test/OpenMP/distribute_simd_ast_print.cpp +++ b/clang/test/OpenMP/distribute_simd_ast_print.cpp @@ -41,7 +41,7 @@ public: } }; -// CHECK: #pragma omp distribute simd private(this->a) private(this->a) private(T::a) +// CHECK: #pragma omp distribute simd private(this->a) private(this->a) private(T::a){{$}} // CHECK: #pragma omp distribute simd private(this->a) private(this->a) // CHECK: #pragma omp distribute simd private(this->a) private(this->a) private(this->S::a) |