mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-29 00:08:59 -04:00
14 lines
246 B
Plaintext
14 lines
246 B
Plaintext
// 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);
|
|
}
|