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
/
xb.c
blob
09087ccf387fdd9fd9584be581c51f02a2cf4eb7
1
foo
(
a
,
b
)
2
{
3
unsigned
x
=
1
;
4
5
a
+=
b
;
6
a
+=
x
;
7
if
(
a
<=
0
)
8
return
1
;
9
return
0
;
10
}
11
12
main
()
13
{
14
printf
(
"%d
\n
"
,
foo
(
1
, ~
0
));
15
printf
(
"%d
\n
"
,
foo
(
0
, ~
0
));
16
printf
(
"%d
\n
"
,
foo
(-
1
, ~
0
));
17
}