brintos

brintos / llvm-project-archived public Read only

0
0
Text · 452 B · 078e2ec Raw
11 lines · plain
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 %s2 3#include "Inputs/cuda.h"4 5__device__ void f();6template<void(*F)()> __global__ void t() { F(); }7__host__ void g() { t<f><<<1,1>>>(); }8 9// Ensure the value of device-function (as value template parameter) is null.10// CHECK: !DITemplateValueParameter(name: "F", type: !{{[0-9]+}}, value: null)11