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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20030815-1.c
blob
7bf21bd468501e2a321fe6fa4d709ca9989ad70b
1
/* Test completion of incomplete types.
2
There used to be a bug where some types from incomplete
3
list were accidentally lost. */
4
/* { dg-do compile } */
5
/* { dg-options "" } */
6
7
typedef
struct
a E
;
8
typedef
struct
b F
;
9
typedef
struct
c G
;
10
typedef
struct
d H
;
11
struct
a
{
int
a
; };
12
struct
c
{
int
c
; };
13
struct
d
{
int
d
; };
14
struct
b
{
int
b
; };
15
int
se
=
sizeof
(
E
);
16
int
sf
=
sizeof
(
F
);
17
int
sg
=
sizeof
(
G
);
18
int
sh
=
sizeof
(
H
);