| 1 | #include <inttypes.h> |
|---|---|
| 2 | |
| 3 | // GDB JIT interface stub |
| 4 | struct |
| 5 | { |
| 6 | uint32_t version; |
| 7 | uint32_t action_flag; |
| 8 | void* relevant_entry; |
| 9 | void* first_entry; |
| 10 | } __jit_debug_descriptor = { .version: 1, .action_flag: 0, .relevant_entry: 0, .first_entry: 0 }; |
| 11 | |
| 12 | void __jit_debug_register_code() |
| 13 | { |
| 14 | } |
| 15 | // end GDB JIT interface stub |
| 16 | |
| 17 | int main() |
| 18 | { |
| 19 | return 0; |
| 20 | } |
| 21 |
