| OpCapability Shader |
| %1 = OpExtInstImport "GLSL.std.450" |
| OpMemoryModel Logical GLSL450 |
| OpEntryPoint Fragment %main "main" %_GLF_color |
| OpExecutionMode %main OriginUpperLeft |
| OpSource ESSL 310 |
| OpName %main "main" |
| OpName %func_ "func(" |
| OpName %i "i" |
| OpName %_GLF_color "_GLF_color" |
| OpDecorate %_GLF_color Location 0 |
| %void = OpTypeVoid |
| %7 = OpTypeFunction %void |
| %float = OpTypeFloat 32 |
| %9 = OpTypeFunction %float |
| %int = OpTypeInt 32 1 |
| %_ptr_Function_int = OpTypePointer Function %int |
| %int_0 = OpConstant %int 0 |
| %int_10 = OpConstant %int 10 |
| %bool = OpTypeBool |
| %int_5 = OpConstant %int 5 |
| %int_1 = OpConstant %int 1 |
| %int_8 = OpConstant %int 8 |
| %float_0 = OpConstant %float 0 |
| %float_1 = OpConstant %float 1 |
| %false = OpConstantFalse %bool |
| %v4float = OpTypeVector %float 4 |
| %_ptr_Output_v4float = OpTypePointer Output %v4float |
| %_GLF_color = OpVariable %_ptr_Output_v4float Output |
| %23 = OpConstantComposite %v4float %float_1 %float_0 %float_0 %float_1 |
| %main = OpFunction %void None %7 |
| %24 = OpLabel |
| OpSelectionMerge %25 None |
| OpBranchConditional %false %26 %27 |
| %26 = OpLabel |
| %28 = OpFunctionCall %float %func_ |
| %29 = OpCompositeConstruct %v4float %28 %28 %28 %28 |
| OpStore %_GLF_color %29 |
| OpBranch %25 |
| %27 = OpLabel |
| OpStore %_GLF_color %23 |
| OpBranch %25 |
| %25 = OpLabel |
| OpReturn |
| OpFunctionEnd |
| %func_ = OpFunction %float None %9 |
| %30 = OpLabel |
| %i = OpVariable %_ptr_Function_int Function |
| OpStore %i %int_0 |
| OpBranch %31 |
| %31 = OpLabel |
| OpLoopMerge %32 %33 None |
| OpBranch %34 |
| %34 = OpLabel |
| %35 = OpLoad %int %i |
| %36 = OpSLessThan %bool %35 %int_10 |
| OpBranchConditional %36 %37 %32 |
| %37 = OpLabel |
| %38 = OpLoad %int %i |
| %39 = OpSGreaterThan %bool %38 %int_5 |
| OpSelectionMerge %40 None |
| OpBranchConditional %39 %41 %40 |
| %41 = OpLabel |
| %42 = OpLoad %int %i |
| %43 = OpIAdd %int %42 %int_1 |
| OpStore %i %43 |
| OpBranch %40 |
| %40 = OpLabel |
| %44 = OpLoad %int %i |
| %45 = OpSGreaterThan %bool %44 %int_8 |
| OpSelectionMerge %46 None |
| OpBranchConditional %45 %47 %46 |
| %47 = OpLabel |
| OpReturnValue %float_0 |
| %46 = OpLabel |
| OpBranch %33 |
| %33 = OpLabel |
| %48 = OpLoad %int %i |
| %49 = OpIAdd %int %48 %int_1 |
| OpStore %i %49 |
| OpBranch %31 |
| %32 = OpLabel |
| OpReturnValue %float_1 |
| OpFunctionEnd |