1f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s 2f4a2713aSLionel Sambuc 3*0a6a1f1dSLionel Sambuc #include "Inputs/cuda.h" 4f4a2713aSLionel Sambuc g1(int x)5f4a2713aSLionel Sambuc__global__ void g1(int x) {} 6f4a2713aSLionel Sambuc main(void)7f4a2713aSLionel Sambucint main(void) { 8f4a2713aSLionel Sambuc // CHECK: call{{.*}}cudaConfigureCall 9f4a2713aSLionel Sambuc // CHECK: icmp 10f4a2713aSLionel Sambuc // CHECK: br 11f4a2713aSLionel Sambuc // CHECK: call{{.*}}g1 12f4a2713aSLionel Sambuc g1<<<1, 1>>>(42); 13f4a2713aSLionel Sambuc } 14