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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr45047.c
blob
f37955a0372beb38757333b56c9ffbb34865b575
1
/* PR tree-optimization/45047 */
2
3
void
4
foo
(
const unsigned short
*
w
,
char
*
x
,
int
y
,
int
z
)
5
{
6
int
i
;
7
for
(
i
=
0
;
i
<
y
;
i
++)
8
x
[
i
] =
w
[
i
] ==
z
;
9
}