summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/DeviceLTO/file2.cu
blob: 73d646819e532b4b34007d2e2ab01108d84702c9 (plain)
1
2
3
4
5
extern __device__ int file3_func(int);
int __device__ file2_func(int x)
{
  return x + file3_func(x);
}