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
/
loadhicc.c
blob
a7540894f5e6b0d081de6a986f023756b7311ab7
1
typedef
int
xtype
;
2
3
foo
(
p
,
pc
)
4
xtype
*
p
;
5
char
*
pc
;
6
{
7
xtype a
;
8
unsigned
b
=
0
;
9
10
a
= *
p
;
11
p
[
1
] =
a
;
12
if
((
unsigned
)
p
[
1
] >
0
)
13
return
1
;
14
return
a
;
15
}