| 1016 | |
| 1017 | |
| 1018 | static void setinstaux (Instruction *i, Opcode op, int offset, int aux) { |
| 1019 | assert(aux <= MAXAUX); |
| 1020 | i->i.code = op; |
| 1021 | i->i.offset = offset; |
| 1022 | i->i.aux = aux; |
| 1023 | } |
| 1024 | |
| 1025 | #define setinst(i,op,off) setinstaux(i,op,off,0) |
| 1026 |
no outgoing calls
no test coverage detected