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
PR target/55146
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr51000.c
blob
75af2d8a2983ac7171d269810f16d7dc55ad735b
1
/* { dg-do compile } */
2
3
_Bool a
[
2048
];
4
int
b
[
2048
];
5
6
void
7
foo
()
8
{
9
int
i
;
10
for
(
i
=
0
;
i
<
2048
;
i
+=
4
)
11
{
12
a
[
i
] =
b
[
i
] <=
10
;
13
a
[
i
+
3
] =
b
[
i
+
1
] <=
10
;
14
a
[
i
+
2
] =
b
[
i
+
2
] <=
10
;
15
a
[
i
+
1
] =
b
[
i
+
3
] <=
10
;
16
}
17
}
18
19
/* { dg-final { cleanup-tree-dump "vect" } } */