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-2_1.c
blob
b3a2cd06e667786632966f3bb588e2736174af4b
1
struct
X
{
2
int
b
;
3
};
4
5
typedef
struct
list_node
*
list
;
6
7
struct
list_node
{
8
list next
;
9
list
*
ptr
;
10
struct
X
*
value
;
11
};
12
13
list
*
g
(
list
*
ptr
)
14
{
15
return
ptr
;
16
}