
Basic infrastructure to collect Function properties in Metadata Analysis - Add a `SmallVector` of entry properties to the metadata information. - Add a structure to represent function properties. Currently `numthreads` and shader kind properties of shader entry functions are represented.
13 lines
304 B
LLVM
13 lines
304 B
LLVM
; RUN: opt -S -passes=dxil-translate-metadata %s | FileCheck %s
|
|
target triple = "dxil-pc-shadermodel6.0-vertex"
|
|
|
|
; CHECK: !dx.version = !{![[DXVER:[0-9]+]]}
|
|
; CHECK: ![[DXVER]] = !{i32 1, i32 0}
|
|
|
|
define void @entry() #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { noinline nounwind "hlsl.shader"="vertex" }
|