PTX: Set PTX 2.0 as the minimum supported version
[oota-llvm.git] / test / CodeGen / PTX / options.ll
1 ; RUN: llc < %s -march=ptx -mattr=ptx20 | grep ".version 2.0"
2 ; RUN: llc < %s -march=ptx -mattr=ptx21 | grep ".version 2.1"
3 ; RUN: llc < %s -march=ptx -mattr=ptx22 | grep ".version 2.2"
4 ; RUN: llc < %s -march=ptx -mattr=sm10 | grep ".target sm_10"
5 ; RUN: llc < %s -march=ptx -mattr=sm13 | grep ".target sm_13"
6 ; RUN: llc < %s -march=ptx -mattr=sm20 | grep ".target sm_20"
7
8 define ptx_device void @t1() {
9         ret void
10 }