repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr19515.c
blob
df0e10721882bf3f223410516f69eccfc4b482eb
1
/* PR 19515 */
2
3
typedef
union
{
4
char
a2
[
8
];
5
}
aun
;
6
7
void
abort
(
void
);
8
9
int
main
(
void
)
10
{
11
aun a
= {{
0
}};
12
13
if
(
a
.
a2
[
2
] !=
0
)
14
abort
();
15
return
0
;
16
}
17