(inst uint32)
| 195 | } |
| 196 | |
| 197 | func opGetArgC(inst uint32) int { |
| 198 | return int(inst>>9) & 0x1ff |
| 199 | } |
| 200 | |
| 201 | func opSetArgC(inst *uint32, arg int) { |
| 202 | *inst = (*inst & 0xfffc01ff) | uint32((arg&0x1ff)<<9) |
no outgoing calls
no test coverage detected
searching dependent graphs…