repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
typename-vla-1.c
blob
16165131287d11342da68c0f2496393325f4ec2e
1
/* PR c/21536 */
2
/* { dg-do run } */
3
/* { dg-options "-O2 -Wuninitialized" } */
4
5
extern
void
abort
(
void
);
6
extern
void
exit
(
int
);
7
8
int
9
main
(
void
)
10
{
11
int
a
=
1
;
12
if
(
sizeof
(*(++
a
, (
char
(*)[
a
])
0
)) !=
2
)
13
abort
();
14
exit
(
0
);
15
}
16
17