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 c/56980
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr59011.c
blob
2fb8187ad55212c0e30559b2a0790b9a6c26abad
1
/* PR middle-end/59011 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=gnu99" } */
4
5
void
6
foo
(
int
m
)
7
{
8
int
a
[
m
];
9
void
10
bar
(
void
)
11
{
12
{
13
int
14
baz
(
void
)
15
{
16
return
a
[
0
];
17
}
18
}
19
a
[
0
] =
42
;
20
}
21
bar
();
22
}