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
/
mtst.c
blob
4f43137b705a7cf884f6f7bca66db005e30c018d
1
foo
(
int
*
p
,
int
c
)
2
{
3
int
a
,
b
;
4
a
=
p
[
0
];
5
b
=
p
[
1
];
6
c
=
p
[
2
];
7
if
(
b
==
0
)
8
goto
foo1
;
9
if
(
b
<
0
)
10
goto
foo2
;;
11
12
return
a
+
b
+
c
;
13
foo1
:
14
return
1
;
15
foo2
:
16
return
2
;
17
}