| 21 | |
| 22 | |
| 23 | void print_frame(wasm_frame_t* frame) { |
| 24 | printf("> %p @ 0x%zx = %"PRIu32".0x%zx\n", |
| 25 | wasm_frame_instance(frame), |
| 26 | wasm_frame_module_offset(frame), |
| 27 | wasm_frame_func_index(frame), |
| 28 | wasm_frame_func_offset(frame) |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | |
| 33 | int main(int argc, const char* argv[]) { |
no test coverage detected