| 197 | }; |
| 198 | struct Array_copy : public Base { |
| 199 | Array_copy() : Base(Opcode::Array_copy), dst_typeidx(0), src_typeidx(0) {} |
| 200 | Array_copy(index_t dst, index_t src) : Base(Opcode::Array_copy), dst_typeidx(dst), src_typeidx(src) {} |
| 201 | index_t dst_typeidx; |
| 202 | index_t src_typeidx; |
nothing calls this directly
no outgoing calls
no test coverage detected