aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PTX/options.ll
blob: 1435537e007869d897d6b1a59ebbbc991eb295e1 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -march=ptx -mattr=ptx14 | grep ".version 1.4"
; RUN: llc < %s -march=ptx -mattr=ptx20 | grep ".version 2.0"
; RUN: llc < %s -march=ptx -mattr=ptx21 | grep ".version 2.1"
; RUN: llc < %s -march=ptx -mattr=sm20 | grep ".target sm_20"
; RUN: llc < %s -march=ptx -mattr=sm13 | grep ".target sm_13"

define ptx_device void @t1() {
	ret void
}