llvm-6502/test/CodeGen/PTX/ret.ll
Che-Liang Chiou 8db2defa83 Add test case for PTX ret instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114789 91177308-0d34-0410-b5e6-96231b3b80d8
2010-09-25 07:49:54 +00:00

7 lines
99 B
LLVM

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