(inst uint32)
| 179 | } |
| 180 | |
| 181 | func opGetArgA(inst uint32) int { |
| 182 | return int(inst>>18) & 0xff |
| 183 | } |
| 184 | |
| 185 | func opSetArgA(inst *uint32, arg int) { |
| 186 | *inst = (*inst & 0xfc03ffff) | uint32((arg&0xff)<<18) |
no outgoing calls
no test coverage detected
searching dependent graphs…