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
/
pr53226.c
blob
2d0284fb006d5b29b24ffd1e1198cd9228757988
1
/* PR tree-optimization/53226 */
2
3
void
4
foo
(
unsigned long
*
x
,
char
y
,
char
z
)
5
{
6
int
i
;
7
for
(
i
=
y
;
i
<
z
; ++
i
)
8
{
9
unsigned long
a
= ((
unsigned char
)
i
) &
63UL
;
10
unsigned long
b
=
1ULL
<<
a
;
11
*
x
|=
b
;
12
}
13
}