Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
4f1d1551ed48e2ac52f5614ba8f94e2931546b51
/
.
/
test
/
CodeGen
/
2010-06-11-SaveExpr.c
blob: bfe0f35e269c5ab1febfbf7180d03f5085926b21 [
file
] [
log
] [
blame
]
Eric Christopher
3883e66
2011-07-26 22:17:02 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm %s -o -
2
// Test case by Eric Postpischil!
3
void
foo
(
void
)
4
{
5
char
a
[
1
];
6
int
t
=
1
;
7
((
char
(*)[
t
])
a
)[
0
][
0
]
=
0
;
8
}