summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Unwind/Inputs/call-asm.c
blob: 778c16b36a761e822f7a64741d735b95f0e5dae0 (plain)
1
2
3
// Explicit mangling is necessary as on Darwin an underscore is prepended to the symbol.
int asm_main() __asm("asm_main");
int main() { return asm_main(); }