(inst *uint32, arg int)
| 199 | } |
| 200 | |
| 201 | func opSetArgC(inst *uint32, arg int) { |
| 202 | *inst = (*inst & 0xfffc01ff) | uint32((arg&0x1ff)<<9) |
| 203 | } |
| 204 | |
| 205 | func opGetArgBx(inst uint32) int { |
| 206 | return int(inst & 0x3ffff) |
no outgoing calls
no test coverage detected
searching dependent graphs…