(op int, a int, sbx int)
| 236 | } |
| 237 | |
| 238 | func opCreateASbx(op int, a int, sbx int) uint32 { |
| 239 | var inst uint32 = 0 |
| 240 | opSetOpCode(&inst, op) |
| 241 | opSetArgA(&inst, a) |
| 242 | opSetArgSbx(&inst, sbx) |
| 243 | return inst |
| 244 | } |
| 245 | |
| 246 | const opBitRk = 1 << (opSizeB - 1) |
| 247 | const opMaxIndexRk = opBitRk - 1 |
no test coverage detected
searching dependent graphs…