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
2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vla-9.c
blob
506a1a2eb14ca2ec8604f5f1a04296023260f575
1
/* { dg-do compile } */
2
/* { dg-options "-std=c99 -pedantic-errors -W -Wall" } */
3
/* PR c/28280 */
4
5
void
f
(
__SIZE_TYPE__ d
)
6
{
7
typedef
int
t
[
d
];
8
t
*
g
= (
__typeof
(
g
))
d
;
9
(
void
)
g
;
10
}