From: Justin Holewinski Date: Fri, 25 May 2012 17:20:38 +0000 (+0000) Subject: [NVPTX] Add a new test case for the newly-enabled call handling X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=968b09d03f92f2c80ebe2347b6c65ed30bc3279b;p=oota-llvm.git [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 --- diff --git a/test/CodeGen/NVPTX/simple-call.ll b/test/CodeGen/NVPTX/simple-call.ll new file mode 100644 index 00000000000..ab6f423cd80 --- /dev/null +++ b/test/CodeGen/NVPTX/simple-call.ll @@ -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}