blob: c7e0808f90e63636eab4da573ca511a30d679803 [file] [log] [blame]
; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 28
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint GLCompute %unused_entry_point "unused_entry_point"
OpExecutionMode %unused_entry_point LocalSize 1 1 1
OpName %unused_entry_point "unused_entry_point"
OpName %some_loop_body "some_loop_body"
OpName %f "f"
OpName %i "i"
%void = OpTypeVoid
%1 = OpTypeFunction %void
%int = OpTypeInt 32 1
%10 = OpConstantNull %int
%_ptr_Function_int = OpTypePointer Function %int
%int_5 = OpConstant %int 5
%bool = OpTypeBool
%int_1 = OpConstant %int 1
%unused_entry_point = OpFunction %void None %1
%4 = OpLabel
OpReturn
OpFunctionEnd
%some_loop_body = OpFunction %void None %1
%6 = OpLabel
OpReturn
OpFunctionEnd
%f = OpFunction %void None %1
%8 = OpLabel
%i = OpVariable %_ptr_Function_int Function %10
OpStore %i %10
OpBranch %13
%13 = OpLabel
OpLoopMerge %14 %15 None
OpBranch %16
%16 = OpLabel
%18 = OpLoad %int %i
%20 = OpSLessThan %bool %18 %int_5
%17 = OpLogicalNot %bool %20
OpSelectionMerge %22 None
OpBranchConditional %17 %23 %22
%23 = OpLabel
OpBranch %14
%22 = OpLabel
%24 = OpFunctionCall %void %some_loop_body
OpBranch %15
%15 = OpLabel
%25 = OpLoad %int %i
%27 = OpIAdd %int %25 %int_1
OpStore %i %27
OpBranch %13
%14 = OpLabel
OpReturn
OpFunctionEnd