| 9 | |
| 10 | |
| 11 | void print_frame(wasm_frame_t* frame) { |
| 12 | printf("> %p @ 0x%zx = %"PRIu32".0x%zx\n", |
| 13 | wasm_frame_instance(frame), |
| 14 | wasm_frame_module_offset(frame), |
| 15 | wasm_frame_func_index(frame), |
| 16 | wasm_frame_func_offset(frame) |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | |
| 21 | int main(int argc, const char* argv[]) { |
no test coverage detected