(op int, a int, b int, c int)
| 219 | } |
| 220 | |
| 221 | func opCreateABC(op int, a int, b int, c int) uint32 { |
| 222 | var inst uint32 = 0 |
| 223 | opSetOpCode(&inst, op) |
| 224 | opSetArgA(&inst, a) |
| 225 | opSetArgB(&inst, b) |
| 226 | opSetArgC(&inst, c) |
| 227 | return inst |
| 228 | } |
| 229 | |
| 230 | func opCreateABx(op int, a int, bx int) uint32 { |
| 231 | var inst uint32 = 0 |
no test coverage detected
searching dependent graphs…