blob: d674ef3693497e191a3ed1f0e04c5a14c83cc7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
; RUN: opt -S -dxil-prepare %s | FileCheck %s
target triple = "dxil-pc-shadermodel6.6-compute"
define void @entry() #0 {
entry:
ret void
}
; Make sure experimental attribute is left when validation version is 0.0.
; CHECK:attributes #0 = { noinline nounwind "exp-shader"="cs" }
attributes #0 = { noinline nounwind "exp-shader"="cs" "hlsl.numthreads"="1,2,1" "hlsl.shader"="compute" }
!dx.valver = !{!0}
!0 = !{i32 0, i32 0}
|