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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr50765.c
blob
6e1c6974750d7873404bcac3dd7a1da5b6de1f16
1
/* PR tree-optimization/50765 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -fno-tree-dce" } */
4
5
void
6
foo
(
long
*
w
,
long
*
x
,
unsigned char
*
y
,
int
z
)
7
{
8
for
(;
z
<
429
;
z
++)
9
w
[
z
] = (-
19
^
y
[
z
]) &
x
[
z
];
10
}