1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
; RUN: not opt -S -passes='dxil-post-optimization-validation' -mtriple=dxil-pc-shadermodel6.6-compute %s 2>&1 | FileCheck %s
; CHECK: error: UAV at register 0 and space 0 is bound to a texture or typed buffer.
@TB.str = private unnamed_addr constant [3 x i8] c"TB\00", align 1
define void @CSMain() "hlsl.shader"="compute" {
entry:
%TB = tail call target("dx.Texture", float, 1, 0, 0, 4) @llvm.dx.resource.handlefrombinding(i32 0, i32 0, i32 1, i32 0, ptr nonnull @TB.str)
ret void
}
!dx.rootsignatures = !{!0}
!0 = !{ptr @CSMain, !1, i32 2}
!1 = !{!2}
!2 = !{!"RootUAV", i32 0, i32 0, i32 0, i32 4}
|