blob: 83dce50b4af83cf914939fdca3739ab8ab8ebb9e [file] [log] [blame]
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002// RUN: %clang_cc1 -fsyntax-only -fcuda-is-device -verify %s
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00003
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004#include "Inputs/cuda.h"
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00005
6__host__ void h1h(void);
7__device__ void h1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ function}}
8__host__ __device__ void h1hd(void);
9__global__ void h1g(void);
10
11struct h1ds { // expected-note {{requires 1 argument}}
12 __device__ h1ds(); // expected-note {{candidate constructor not viable: call to __device__ function from __host__ function}}
13};
14
15__host__ void h1(void) {
16 h1h();
17 h1d(); // expected-error {{no matching function}}
18 h1hd();
19 h1g<<<1, 1>>>();
20 h1ds x; // expected-error {{no matching constructor}}
21}
22
23__host__ void d1h(void); // expected-note {{candidate function not viable: call to __host__ function from __device__ function}}
24__device__ void d1d(void);
25__host__ __device__ void d1hd(void);
26__global__ void d1g(void); // expected-note {{'d1g' declared here}}
27
28__device__ void d1(void) {
29 d1h(); // expected-error {{no matching function}}
30 d1d();
31 d1hd();
32 d1g<<<1, 1>>>(); // expected-error {{reference to __global__ function 'd1g' in __device__ function}}
33}