[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCUDA / debug-info-template.cu
blob078e2ecff913c84886e4e34e80eb750bd6c709c7
1 // RUN: %clang_cc1 %s --std=c++11 -triple x86_64-unknown-linux -emit-llvm -o - -debug-info-kind=limited -dwarf-version=2 -debugger-tuning=gdb | FileCheck %s
3 #include "Inputs/cuda.h"
5 __device__ void f();
6 template<void(*F)()> __global__ void t() { F(); }
7 __host__ void g() { t<f><<<1,1>>>(); }
9 // Ensure the value of device-function (as value template parameter) is null.
10 // CHECK: !DITemplateValueParameter(name: "F", type: !{{[0-9]+}}, value: null)