(inst *uint32, arg int)
| 183 | } |
| 184 | |
| 185 | func opSetArgA(inst *uint32, arg int) { |
| 186 | *inst = (*inst & 0xfc03ffff) | uint32((arg&0xff)<<18) |
| 187 | } |
| 188 | |
| 189 | func opGetArgB(inst uint32) int { |
| 190 | return int(inst & 0x1ff) |
no outgoing calls
no test coverage detected
searching dependent graphs…