Sign in
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
lldb
/
test
/
Shell
/
Unwind
/
Inputs
/
call-asm.c
blob: 778c16b36a761e822f7a64741d735b95f0e5dae0 [
file
] [
log
] [
blame
] [
edit
]
// 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
();
}