Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / functionalities / jitloader_gdb / simple.c
blob77b1a2ad812535e1903f505369336dba9137b4be
1 #include <inttypes.h>
3 // GDB JIT interface stub
4 struct
6 uint32_t version;
7 uint32_t action_flag;
8 void* relevant_entry;
9 void* first_entry;
10 } __jit_debug_descriptor = { 1, 0, 0, 0 };
12 void __jit_debug_register_code()
15 // end GDB JIT interface stub
17 int main()
19 return 0;