| 130 | }; |
| 131 | |
| 132 | static void push_deinit(uint8_t *data) { |
| 133 | struct hc_push_op *op = (void *)data; |
| 134 | hc_value_deinit(&op->value); |
| 135 | } |
| 136 | |
| 137 | static uint8_t *push_eval(struct hc_vm *vm, uint8_t *data) { |
| 138 | struct hc_push_op *op = (void *)hc_align(data, alignof(struct hc_push_op)); |
nothing calls this directly
no test coverage detected