1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-27 13:30:05 +00:00
llvm-6502/test/CodeGen/PTX/exit.ll
Che-Liang Chiou f9930da2ef Add ret instruction to PTX backend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114788 91177308-0d34-0410-b5e6-96231b3b80d8
2010-09-25 07:46:17 +00:00

7 lines
100 B
LLVM

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