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
PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
pr28712_0.c
blob
dff029cadb18a75c505a19a531664842b5b0f970
1
/* PR c/28712 */
2
/* { dg-lto-do link } */
3
4
struct
A
;
5
6
extern
struct
A
*
a
;
7
8
struct
A
{ }
__attribute__
((
packed
));
9
10
struct
B
__attribute__
((
aligned
(
sizeof
(
int
))));
11
12
extern
struct
B
*
b
;
13
14
struct
B
{
int
i
; }
__attribute__
((
packed
));
15
16
int
main
() {
return
0
; }