diff options
Diffstat (limited to 'test/OpenMP/threadprivate_ast_print.cpp')
-rw-r--r-- | test/OpenMP/threadprivate_ast_print.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/OpenMP/threadprivate_ast_print.cpp b/test/OpenMP/threadprivate_ast_print.cpp index 4d0d40e..be2a79c 100644 --- a/test/OpenMP/threadprivate_ast_print.cpp +++ b/test/OpenMP/threadprivate_ast_print.cpp @@ -1,6 +1,6 @@ -// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -ast-print %s | FileCheck %s -// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -std=c++11 -emit-pch -o %t %s -// RUN: %clang_cc1 -fopenmp=libiomp5 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print +// 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 // expected-no-diagnostics #ifndef HEADER @@ -22,6 +22,8 @@ int a, b; // CHECK: int a; // CHECK: int b; #pragma omp threadprivate(a) +#pragma omp threadprivate(a) +// CHECK-NEXT: #pragma omp threadprivate(a) // CHECK-NEXT: #pragma omp threadprivate(a) #pragma omp threadprivate(d, b) // CHECK-NEXT: #pragma omp threadprivate(d,b) |