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
/
pr59102.c
blob
495473322a5876296aeeefcd93acf294b13b59de
1
2
int
a
,
b
,
c
,
f
;
3
4
struct
S
5
{
6
int
f0
;
7
}
d
, *
e
;
8
9
struct
S
10
foo
()
11
{
12
b
=
c
=
b
||
a
==
0
||
f
%
11
;
13
return
d
;
14
}
15
16
int
17
main
()
18
{
19
foo
();
20
if
(
b
);
21
else
22
{
23
struct
S
**
g
= &
e
;
24
*
g
=
0
;
25
*
e
=
foo
();
26
}
27
return
0
;
28
}