MCPcopy Create free account
hub / github.com/codr7/hacktical-c / deinit_stack

Function deinit_stack

vm/vm.c:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38static 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
46static void deinit_ops(struct hc_vm *vm) {
47 uint8_t *p = vm->code.start;

Callers 1

hc_vm_deinitFunction · 0.85

Calls 2

hc_value_deinitFunction · 0.85
hc_vector_deinitFunction · 0.85

Tested by

no test coverage detected