Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
a11d129aa8ad9fa123e72d0663c327d5578d2602
/
.
/
test
/
CodeGen
/
2003-11-16-StaticArrayInit.c
blob: 8a11c05d08dbaf36b00fb8c001f60282fddc9247 [
file
] [
log
] [
blame
]
Eric Christopher
a11d129
2011-07-26 00:57:50 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
void
bar
()
{
4
static
char
x
[
10
];
5
static
char
*
xend
=
x
+
10
;
6
}
7
8