| ; SPIR-V |
| ; Version: 1.3 |
| ; Generator: Google Tint Compiler; 1 |
| ; Bound: 18 |
| ; 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 |
| %12 = OpTypeFunction %void |
| %int_123 = OpConstant %int 123 |
| %func = OpFunction %int None %6 |
| %value = OpFunctionParameter %int |
| %pointer_root = OpFunctionParameter %_ptr_Function_int |
| %7 = OpLabel |
| %8 = OpLoad %int %pointer_root None |
| %9 = OpIAdd %int %value %8 |
| OpReturnValue %9 |
| OpFunctionEnd |
| %main = OpFunction %void None %12 |
| %13 = OpLabel |
| %i = OpVariable %_ptr_Function_int Function |
| OpStore %i %int_123 |
| %16 = OpLoad %int %i None |
| %r = OpFunctionCall %int %func %16 %i |
| OpReturn |
| OpFunctionEnd |