[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / PCH / pragma-cuda-force-host-device.cu
blob1eaa453ad78a94f877e2e238b23220bca54d3f72
1 // RUN: %clang_cc1 -emit-pch %s -o %t
2 // RUN: %clang_cc1 -verify -verify-ignore-unexpected=note -include-pch %t -fsyntax-only %s
4 #ifndef HEADER
5 #define HEADER
7 #pragma clang force_cuda_host_device begin
8 #pragma clang force_cuda_host_device begin
9 #pragma clang force_cuda_host_device end
11 void hd1() {}
13 #else
15 void hd2() {}
17 #pragma clang force_cuda_host_device end
19 void host_only() {}
21 __attribute__((device)) void device() {
22   hd1();
23   hd2();
24   host_only(); // expected-error {{no matching function for call}}
27 #endif