blob: d4c38c9be75835dc4b598414756cc370656ff4d2 [file] [log] [blame]
; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 30
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint GLCompute %main "main"
OpExecutionMode %main LocalSize 1 1 1
OpName %deref "deref"
OpName %S "S"
OpMemberName %S 0 "x"
OpName %a "a"
OpName %b "b"
OpName %no_deref "no_deref"
OpName %a_0 "a"
OpName %b_0 "b"
OpName %main "main"
OpMemberDecorate %S 0 Offset 0
%void = OpTypeVoid
%1 = OpTypeFunction %void
%int = OpTypeInt 32 1
%S = OpTypeStruct %int
%_ptr_Function_S = OpTypePointer Function %S
%9 = OpConstantNull %S
%uint = OpTypeInt 32 0
%uint_0 = OpConstant %uint 0
%_ptr_Function_int = OpTypePointer Function %int
%16 = OpConstantNull %int
%int_42 = OpConstant %int 42
%deref = OpFunction %void None %1
%4 = OpLabel
%a = OpVariable %_ptr_Function_S Function %9
%b = OpVariable %_ptr_Function_int Function %16
%13 = OpAccessChain %_ptr_Function_int %a %uint_0
%14 = OpLoad %int %13
OpStore %b %14
%17 = OpAccessChain %_ptr_Function_int %a %uint_0
OpStore %17 %int_42
OpReturn
OpFunctionEnd
%no_deref = OpFunction %void None %1
%20 = OpLabel
%a_0 = OpVariable %_ptr_Function_S Function %9
%b_0 = OpVariable %_ptr_Function_int Function %16
%22 = OpAccessChain %_ptr_Function_int %a_0 %uint_0
%23 = OpLoad %int %22
OpStore %b_0 %23
%25 = OpAccessChain %_ptr_Function_int %a_0 %uint_0
OpStore %25 %int_42
OpReturn
OpFunctionEnd
%main = OpFunction %void None %1
%27 = OpLabel
%28 = OpFunctionCall %void %deref
%29 = OpFunctionCall %void %no_deref
OpReturn
OpFunctionEnd