Sign in
llvm
/
llvm-project
/
8720bdff91cc3e3097faf76e1bb7a2a02e463577
/
.
/
clang
/
test
/
CodeGen
/
2002-09-19-StarInLabel.c
blob: a34fc8969073f0e7700fb9b7f7a1c214ce25a46e [
file
]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
extern
void
start
(
void
)
__asm__
(
"start"
);
extern
void
_start
(
void
)
__asm__
(
"_start"
);
extern
void
__start
(
void
)
__asm__
(
"__start"
);
void
start
(
void
)
{}
void
_start
(
void
)
{}
void
__start
(
void
)
{}