[NVPTX] Add a new test case for the newly-enabled call handling

NV_CONTRIB

llvm-svn: 157485
This commit is contained in:
Justin Holewinski 2012-05-25 17:20:38 +00:00
parent 57f0630cc5
commit c98041d4d9
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
; CHECK: .func ({{.*}}) device_func
define float @device_func(float %a) noinline {
%ret = fmul float %a, %a
ret float %ret
}
; CHECK: .entry kernel_func
define void @kernel_func(float* %a) {
%val = load float* %a
; CHECK: call.uni (retval0),
; CHECK: device_func,
%mul = call float @device_func(float %val)
store float %mul, float* %a
ret void
}
!nvvm.annotations = !{!1}
!1 = metadata !{void (float*)* @kernel_func, metadata !"kernel", i32 1}