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
/
gnu89-init-4.c
blob
15e9cdb35e6302e83886f59ccd1f4623958b4415
1
/* Test for GNU extensions to compound literals are giving the correct array bounds */
2
/* { dg-do compile } */
3
/* { dg-options "-std=gnu89 -W -Wall -O2" } */
4
5
int
a
[] = (
int
[
4
]){
1
,
1
,
2
};
6
int
f
(
void
)
7
{
8
int
sum
=
0
;
int
i
;
9
for
(
i
=
0
;
i
<
4
;
i
++)
10
sum
=
a
[
i
];
11
return
sum
;
12
}