| 209 | }; |
| 210 | struct Array_init_elem : public Base { |
| 211 | Array_init_elem() : Base(Opcode::Array_init_elem), typeidx(0), elemidx(0) {} |
| 212 | Array_init_elem(index_t typeidx, index_t elemidx) : Base(Opcode::Array_init_elem), typeidx(typeidx), elemidx(elemidx) {} |
| 213 | index_t typeidx; |
| 214 | index_t elemidx; |
nothing calls this directly
no outgoing calls
no test coverage detected