Add test case for PTX ret instruction

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114789 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Che-Liang Chiou 2010-09-25 07:49:54 +00:00
parent f9930da2ef
commit 8db2defa83

6
test/CodeGen/PTX/ret.ll Normal file
View File

@ -0,0 +1,6 @@
; RUN: llc < %s -march=ptx | FileCheck %s
define ptx_device void @t1() {
;CHECK: ret;
ret void
}