| 36 | } |
| 37 | |
| 38 | static void deinit_stack(struct hc_vm *vm) { |
| 39 | hc_vector_do(&vm->stack, v) { |
| 40 | hc_value_deinit(v); |
| 41 | } |
| 42 | |
| 43 | hc_vector_deinit(&vm->stack); |
| 44 | } |
| 45 | |
| 46 | static void deinit_ops(struct hc_vm *vm) { |
| 47 | uint8_t *p = vm->code.start; |
no test coverage detected