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
2013-10-21 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vla-3.c
blob
619c0422a4d36fc3158a30838b9c55ca04781029
1
/* { dg-do compile } */
2
/* { dg-options "-std=gnu99" } */
3
4
/* This used to crash as we did not preserve the correct type
5
for __SIZE_TYPE__. See PR22439. */
6
7
char
foo
(
__SIZE_TYPE__ n
)
8
{
9
char
c
[
1
][
n
];
10
return
c
[
0
][
0
];
11
}