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
/
20100720-3_1.c
blob
3d323813edd00e86198cfb121ffffe31a15764cc
1
struct
X
{
2
int
b
;
3
};
4
5
struct
link
{
6
struct
list_node
*
next
;
7
};
8
9
struct
list_node
{
10
struct
link lnk
;
11
struct
X
*
value
;
12
};
13
14
void
g
(
struct
list_node
*
lst
)
15
{
16
lst
->
lnk
.
next
=
0
;
17
}