(inst *uint32, arg int)
| 191 | } |
| 192 | |
| 193 | func opSetArgB(inst *uint32, arg int) { |
| 194 | *inst = (*inst & 0xfffffe00) | uint32(arg&0x1ff) |
| 195 | } |
| 196 | |
| 197 | func opGetArgC(inst uint32) int { |
| 198 | return int(inst>>9) & 0x1ff |
no outgoing calls
no test coverage detected
searching dependent graphs…