CMake/Tests/CudaOnly/DeviceLTO/file2.cu
2022-07-22 10:34:45 -04:00

6 lines
104 B
Plaintext

extern __device__ int file3_func(int);
int __device__ file2_func(int x)
{
return x + file3_func(x);
}