| ; SPIR-V |
| ; Version: 1.3 |
| ; Generator: Google Tint Compiler; 1 |
| ; Bound: 19 |
| ; Schema: 0 |
| OpCapability Shader |
| OpMemoryModel Logical GLSL450 |
| OpEntryPoint GLCompute %main "main" |
| OpExecutionMode %main LocalSize 1 1 1 |
| OpName %func "func" |
| OpName %value "value" |
| OpName %pointer_root "pointer_root" |
| OpName %main "main" |
| OpName %i "i" |
| OpName %r "r" |
| %int = OpTypeInt 32 1 |
| %_ptr_Function_int = OpTypePointer Function %int |
| %6 = OpTypeFunction %int %int %_ptr_Function_int |
| %void = OpTypeVoid |
| %13 = OpTypeFunction %void |
| %int_123 = OpConstant %int 123 |
| %func = OpFunction %int None %6 |
| %value = OpFunctionParameter %int |
| %pointer_root = OpFunctionParameter %_ptr_Function_int |
| %7 = OpLabel |
| %8 = OpAccessChain %_ptr_Function_int %pointer_root |
| %9 = OpLoad %int %8 None |
| %10 = OpIAdd %int %value %9 |
| OpReturnValue %10 |
| OpFunctionEnd |
| %main = OpFunction %void None %13 |
| %14 = OpLabel |
| %i = OpVariable %_ptr_Function_int Function |
| OpStore %i %int_123 |
| %17 = OpLoad %int %i None |
| %r = OpFunctionCall %int %func %17 %i |
| OpReturn |
| OpFunctionEnd |