You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
246 B

// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
#include "Inputs/cuda.h"
__global__ void g1(int x) {}
int main(void) {
// CHECK: call{{.*}}cudaConfigureCall
// CHECK: icmp
// CHECK: br
// CHECK: call{{.*}}g1
g1<<<1, 1>>>(42);
}