mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 01:46:05 +00:00

This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. This reapplies r230044 with a fixed configure+make build and updated dependencies and testcase requirements. Over the last iteration this version adds - missing target requirements for testcases that specify an x86 triple, - a missing clangCodeGen.a dependency to libClang.a in the make build. rdar://problem/19104245 llvm-svn: 230423
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -x c++ -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s
|
|
// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -std=c++11 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -g -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s
|
|
// expected-no-diagnostics
|
|
// REQUIRES: x86-registered-target
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
template <class T>
|
|
T tmain(T argc) {
|
|
static T a;
|
|
#pragma omp flush
|
|
#pragma omp flush(a)
|
|
return a + argc;
|
|
}
|
|
|
|
// CHECK-LABEL: @main
|
|
int main() {
|
|
static int a;
|
|
#pragma omp flush
|
|
#pragma omp flush(a)
|
|
// CHECK: call void @__kmpc_flush(%{{.+}}* {{(@|%).+}})
|
|
// CHECK: call void @__kmpc_flush(%{{.+}}* {{(@|%).+}})
|
|
return tmain(a);
|
|
// CHECK: call {{.*}} [[TMAIN:@.+]](
|
|
// CHECK: ret
|
|
}
|
|
|
|
// CHECK: [[TMAIN]]
|
|
// CHECK: call void @__kmpc_flush(%{{.+}}* {{(@|%).+}})
|
|
// CHECK: call void @__kmpc_flush(%{{.+}}* {{(@|%).+}})
|
|
// CHECK: ret
|
|
|
|
#endif
|