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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
p8804.C
blob
d3a2401dd4b4e3416d308e4dd55868132c18077b
1
// { dg-do run }
2
// prms-id: 8804
3
4
extern "C" int printf (const char *, ...);
5
6
struct Fails {
7
int i;
8
union {
9
union {
10
int c;
11
};
12
};
13
};
14
15
Fails d;
16
17
int main() {
18
return &d.i == &d.c;
19
}