(inst uint32)
| 187 | } |
| 188 | |
| 189 | func opGetArgB(inst uint32) int { |
| 190 | return int(inst & 0x1ff) |
| 191 | } |
| 192 | |
| 193 | func opSetArgB(inst *uint32, arg int) { |
| 194 | *inst = (*inst & 0xfffffe00) | uint32(arg&0x1ff) |
no outgoing calls
no test coverage detected
searching dependent graphs…