Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCUDASPIRV / kernel-cc.cu
blob9e575d232b34de2252037dbe5446ff9803c76741
1 // RUN: %clang_cc1 -fcuda-is-device -triple spirv32 -o - -emit-llvm -x cuda %s  | FileCheck %s
2 // RUN: %clang_cc1 -fcuda-is-device -triple spirv64 -o - -emit-llvm -x cuda %s  | FileCheck %s
4 // Verifies that building CUDA targeting SPIR-V {32,64} generates LLVM IR with
5 // spir_kernel attributes for kernel functions.
7 // CHECK: define spir_kernel void @_Z6kernelv()
9 __attribute__((global)) void kernel() { return; }
11 // CHECK: !opencl.ocl.version = !{[[OCL:![0-9]+]]}
12 // CHECK: [[OCL]] = !{i32 2, i32 0}