mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 04:46:07 +00:00

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 llvm-svn: 286439
33 lines
787 B
C++
33 lines
787 B
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
|
|
// expected-no-diagnostics
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
void foo() {}
|
|
|
|
template <class T>
|
|
T tmain(T argc) {
|
|
static T a;
|
|
#pragma omp taskwait
|
|
return a + argc;
|
|
}
|
|
// CHECK: static T a;
|
|
// CHECK-NEXT: #pragma omp taskwait
|
|
// CHECK: static int a;
|
|
// CHECK-NEXT: #pragma omp taskwait
|
|
// CHECK: static char a;
|
|
// CHECK-NEXT: #pragma omp taskwait
|
|
|
|
int main(int argc, char **argv) {
|
|
static int a;
|
|
// CHECK: static int a;
|
|
#pragma omp taskwait
|
|
// CHECK-NEXT: #pragma omp taskwait
|
|
return tmain(argc) + tmain(argv[0][0]) + a;
|
|
}
|
|
|
|
#endif
|