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
Split print_rtx into subroutines
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
union-3.c
blob
3e89b755afad5a9387ddfe4165d6a63a354842e4
1
/* PR target/27421 */
2
/* { dg-do compile } */
3
4
union
A
5
{
6
int
i
;
7
void
x
[
1
];
/* { dg-error "array of voids" } */
8
};
9
10
void
foo
(
union
A a
) {}