Home | History | Annotate | Download | only in CodeGenOpenCL
      1 // RUN: %clang_cc1 %s -triple ptx32-unknown-unknown -emit-llvm -O0 -o - | FileCheck %s
      2 
      3 void device_function() {
      4 }
      5 // CHECK: define ptx_device void @device_function()
      6 
      7 __kernel void kernel_function() {
      8   device_function();
      9 }
     10 // CHECK: define ptx_kernel void @kernel_function()
     11 // CHECK: call ptx_device void @device_function()
     12 
     13