dawn-cmake/test/out_of_order_decls/struct/struct.wgsl.expected.spvasm
Ben Clayton 6688b0a3c7 resolver: Enable support of out of order declarations
Allow module-scope declarations to be made in any order.

Bug: tint:1266
Change-Id: Ib2607b6c33fad7c83e2c36f85b0a965eac922ec5
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/79769
Reviewed-by: David Neto <dneto@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-02-11 12:59:08 +00:00

30 lines
960 B
Plaintext

; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 11
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %f "f"
OpExecutionMode %f OriginUpperLeft
OpName %f "f"
OpName %S1 "S1"
OpMemberName %S1 0 "m"
OpName %S2 "S2"
OpMemberName %S2 0 "m"
OpName %v "v"
OpMemberDecorate %S1 0 Offset 0
OpMemberDecorate %S2 0 Offset 0
%void = OpTypeVoid
%1 = OpTypeFunction %void
%int = OpTypeInt 32 1
%S2 = OpTypeStruct %int
%S1 = OpTypeStruct %S2
%_ptr_Function_S1 = OpTypePointer Function %S1
%10 = OpConstantNull %S1
%f = OpFunction %void None %1
%4 = OpLabel
%v = OpVariable %_ptr_Function_S1 Function %10
OpReturn
OpFunctionEnd