repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-09-19-StarInLabel.c
blob
a34fc8969073f0e7700fb9b7f7a1c214ce25a46e
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
extern
void
start
(
void
)
__asm__
(
"start"
);
4
extern
void
_start
(
void
)
__asm__
(
"_start"
);
5
extern
void
__start
(
void
)
__asm__
(
"__start"
);
6
void
start
(
void
) {}
7
void
_start
(
void
) {}
8
void
__start
(
void
) {}
9