Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
1960d43fc1230043262c51e234fd7ff44d585118
/
.
/
test
/
CodeGen
/
vla.c
blob: 2197ee10cf843c021d1c531776c4be8fe90826ed [
file
] [
log
] [
blame
]
// RUN: clang %s -emit-llvm -o %t
int
b
(
char
*
x
);
// Extremely basic VLA test
void
a
(
int
x
)
{
char
arry
[
x
];
arry
[
0
]
=
10
;
b
(
arry
);
}
int
c
(
int
n
)
{
return
sizeof
(
int
[
n
]);
}
int
f0
(
int
x
)
{
int
vla
[
x
];
return
vla
[
x
-
1
];
}