Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr92742.c
blob: 59e74c0616b5696c4b0022fe201435ae923bdaec [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */
unsigned
int
qw
;
int
rs
(
int
iq
,
int
wg
)
{
for
(
qw
=
0
;
qw
<
2
;
++
qw
)
{
}
while
(
iq
<
1
)
{
wg
*=
qw
*
2
;
++
iq
;
}
return
wg
;
}