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
/
2003-11-16-StaticArrayInit.c
blob
7cf7a5ae4b7a6d74c73c96b7f5f1547407f3aeda
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
void
bar
(
void
) {
4
static char
x
[
10
];
5
static char
*
xend
=
x
+
10
;
6
}
7
8