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
/
951004-1.c
blob
1ca60819cdd1554e23aa8851c8a97a343107e426
1
typedef
struct
2
{
3
short
v
,
h
;
4
}
S
;
5
6
S a
;
7
8
f
(
S pnt
)
9
{
10
S mpnt
,
mtp
;
11
12
(&
pnt
)->
v
-=
1
;
13
mpnt
=
pnt
;
14
mtp
=
a
;
15
if
(
mtp
.
v
!=
mpnt
.
v
)
16
{
17
S tpnt
;
18
19
tpnt
=
mtp
;
20
mtp
=
mpnt
;
21
mpnt
=
tpnt
;
22
}
23
}