This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
655364797e
llvm-project
/
llvm
/
test
/
CodeGen
/
PTX
/
exit.ll
7 lines
100 B
LLVM
Raw
Normal View
History
Unescape
Escape
Add the exit instruction to the PTX target. Patch by Che-Liang Chiou <clchiou@gmail.com>! llvm-svn: 114294
2010-09-19 02:52:28 +08:00
; RUN: llc < %s -march=ptx | FileCheck %s
Add ret instruction to PTX backend llvm-svn: 114788
2010-09-25 15:46:17 +08:00
define
ptx_kernel
void
@t1
(
)
{
Add the exit instruction to the PTX target. Patch by Che-Liang Chiou <clchiou@gmail.com>! llvm-svn: 114294
2010-09-19 02:52:28 +08:00
;CHECK: exit;
ret
void
}