Sign in
llvm
/
llvm-project.git
/
refs/heads/users/wlei-llvm/spr/tmp-add-func-map-section-header
/
.
/
clang
/
test
/
CodeGen
/
2002-09-19-StarInLabel.c
blob: a34fc8969073f0e7700fb9b7f7a1c214ce25a46e [
file
] [
log
] [
blame
]
// 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
)
{}