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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20080628-1.c
blob
aca4ff82777c8c48b826c45a3781aaa58397d6f6
1
void
f
(
long double
,
long double
);
2
3
struct
s
{
4
char
c
;
5
struct
s
*
p
;
6
} *
p
;
7
8
void
9
g
(
void
)
10
{
11
long double
ld
;
12
p
->
p
->
c
=
1
;
13
ld
=
p
->
p
->
c
;
14
f
(
ld
,
1.0L
);
15
}