(accept bool)
| 188 | } |
| 189 | |
| 190 | func acceptBlock(accept bool) asm.Instructions { |
| 191 | v := int32(0) |
| 192 | if accept { |
| 193 | v = 1 |
| 194 | } |
| 195 | return []asm.Instruction{ |
| 196 | // R0 <- v |
| 197 | asm.Mov.Imm32(asm.R0, v), |
| 198 | asm.Return(), |
| 199 | } |
| 200 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…