blob: 90d445f483142f5b707ad4a8e33f831ed7922c26 [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 %a "a"
OpName %b "b"
OpName %no_deref "no_deref"
OpName %a_0 "a"
OpName %b_0 "b"
OpName %main "main"
%void = OpTypeVoid
%1 = OpTypeFunction %void
%int = OpTypeInt 32 1
%v3int = OpTypeVector %int 3
%_ptr_Function_v3int = OpTypePointer Function %v3int
%9 = OpConstantNull %v3int
%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_v3int 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_v3int 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