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
/
pr39999.c
blob
c46a651a18aacc1c87a589d5de5d7c7d5deab5e6
1
void
foo
(
void
*);
2
void
3
MMAPGCD
(
int
*
A1
,
int
*
A2
)
4
{
5
int
*
t
;
6
7
do
8
{
9
t
=
A1
;
10
A1
=
A2
;
11
A2
=
t
;
12
}
13
while
(
A2
[-
1
]);
14
15
foo
(
A1
-
1
);
16
foo
(
A2
-
1
);
17
}
18