mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 20:45:53 -04:00

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
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
// RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s
|
|
// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-simd -ast-print %s | FileCheck %s
|
|
// RUN: %clang_cc1 -fopenmp-simd -x c++ -std=c++11 -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fopenmp-simd -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
int main (int argc, char **argv) {
|
|
// CHECK: int main(int argc, char **argv) {
|
|
#pragma omp parallel
|
|
{
|
|
#pragma omp cancellation point parallel
|
|
}
|
|
// CHECK: #pragma omp parallel
|
|
// CHECK-NEXT: {
|
|
// CHECK-NEXT: #pragma omp cancellation point parallel{{$}}
|
|
// CHECK-NEXT: }
|
|
#pragma omp sections
|
|
{
|
|
#pragma omp cancellation point sections
|
|
}
|
|
// CHECK-NEXT: #pragma omp sections
|
|
// CHECK: {
|
|
// CHECK: #pragma omp cancellation point sections
|
|
// CHECK: }
|
|
#pragma omp for
|
|
for (int i = 0; i < argc; ++i) {
|
|
#pragma omp cancellation point for
|
|
}
|
|
// CHECK: #pragma omp for
|
|
// CHECK-NEXT: for (int i = 0; i < argc; ++i) {
|
|
// CHECK-NEXT: #pragma omp cancellation point for
|
|
// CHECK-NEXT: }
|
|
#pragma omp task
|
|
{
|
|
#pragma omp cancellation point taskgroup
|
|
}
|
|
// CHECK: #pragma omp task
|
|
// CHECK: {
|
|
// CHECK: #pragma omp cancellation point taskgroup
|
|
// CHECK: }
|
|
// CHECK: return argc;
|
|
return argc;
|
|
}
|
|
|
|
#endif
|