Files
archived-llvm-mirror/test/CodeGen/PTX/exit.ll
Eric Christopher 2901b19344 Add the exit instruction to the PTX target.
Patch by Che-Liang Chiou <clchiou@gmail.com>!

llvm-svn: 114294
2010-09-18 18:52:28 +00:00

7 lines
89 B
LLVM

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