mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
[NVPTX] Add a new test case for the newly-enabled call handling
NV_CONTRIB git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157485 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6a06e684f7
commit
968b09d03f
26
test/CodeGen/NVPTX/simple-call.ll
Normal file
26
test/CodeGen/NVPTX/simple-call.ll
Normal 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}
|
Loading…
Reference in New Issue
Block a user