Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr92173.c
blob: fcb3548b716987542210ebaf0be76b981b538528 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */
unsigned
int
yo
(
unsigned
int
o0
,
signed
char
s1
)
{
for
(
s1
=
0
;
s1
<
1
;
s1
-=
2
)
o0
+=
o0
;
return
o0
+
s1
;
}