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++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr92173.c
blob
fcb3548b716987542210ebaf0be76b981b538528
1
/* { dg-do compile } */
2
/* { dg-additional-options "-ftree-vectorize" } */
3
4
unsigned int
5
yo
(
unsigned int
o0
,
signed char
s1
)
6
{
7
for
(
s1
=
0
;
s1
<
1
;
s1
-=
2
)
8
o0
+=
o0
;
9
10
return
o0
+
s1
;
11
}