brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1022 B · d85944f Raw
37 lines · cpp
1// RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s2// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s3// RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -verify %s -ast-print | FileCheck %s4 5// RUN: %clang_cc1 -verify -fopenmp-simd -ast-print %s | FileCheck %s6// RUN: %clang_cc1 -fopenmp-simd -x c++ -std=c++11 -emit-pch -o %t %s7// RUN: %clang_cc1 -fopenmp-simd -std=c++11 -include-pch %t -verify %s -ast-print | FileCheck %s8// expected-no-diagnostics9 10#ifndef HEADER11#define HEADER12 13void foo() {}14 15template <class T>16T tmain(T argc) {17  static T a;18#pragma omp taskyield19  return a + argc;20}21// CHECK:      static T a;22// CHECK-NEXT: #pragma omp taskyield{{$}}23// CHECK:      static int a;24// CHECK-NEXT: #pragma omp taskyield25// CHECK:      static char a;26// CHECK-NEXT: #pragma omp taskyield27 28int main(int argc, char **argv) {29  static int a;30// CHECK: static int a;31#pragma omp taskyield32  // CHECK-NEXT: #pragma omp taskyield33  return tmain(argc) + tmain(argv[0][0]) + a;34}35 36#endif37