Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
f86a619314d431ea5ccb1becb38d8a015f6c5501
/
.
/
test
/
FrontendC
/
2007-12-VarArrayDebug.c
blob: 966789eef30daa10d2281e64577a614e444521f7 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S -g -O %s -o - | llc
// RUN: %llvmgcc -S -g %s -o - | llc
extern
void
foo
(
void
);
static
void
baz
(
int
i
)
{
foo
();
typedef
char
A
[
i
];
struct
{
A b
;
}
*
x
=
0
;
}
void
bar
(
i
)
{
baz
(
i
);
}