Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
3cafbad98cba54c7ce5efe773bca679ac4013067
/
.
/
test
/
CodeGen
/
array.c
blob: 58efce7fd7794040eeafb8379b74c89db7af3215 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s
int
f
()
{
int
a
[
2
];
a
[
0
]
=
0
;
}
int
f2
()
{
int
x
=
0
;
int
y
=
1
;
int
a
[
10
]
=
{
y
,
x
,
2
,
3
};
int
b
[
10
]
=
{
2
,
4
,
x
,
6
,
y
,
8
};
int
c
[
5
]
=
{
0
,
1
,
2
,
3
};
}