(inst uint32)
| 171 | } |
| 172 | |
| 173 | func opGetOpCode(inst uint32) int { |
| 174 | return int(inst >> 26) |
| 175 | } |
| 176 | |
| 177 | func opSetOpCode(inst *uint32, opcode int) { |
| 178 | *inst = (*inst & 0x3ffffff) | uint32(opcode<<26) |
no outgoing calls
no test coverage detected
searching dependent graphs…