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/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr51236.c
blob
63bfaeeb0ebbcc96846c54ebc83bf43a77f819d5
1
/* { dg-do compile } */
2
/* { dg-options "-O -ftree-vectorize -mavx2" } */
3
4
long
foo
(
long
*
p
,
int
i
)
5
{
6
long
x
=
0
;
7
8
while
(--
i
)
9
x
^=
p
[
i
];
10
11
return
x
;
12
}