Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr69166.c
blob: c10f8e65357e691ad7d3d7a6553173eee48ff392 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
void
fn2
(
double
*
e
,
double
a
)
{
int
b
=
0
;
for
(;
b
<
256
;
b
++)
{
int
c
=
0
;
double
x
=
e
[
b
];
for
(;
c
<
256
;
++
c
)
x
/=
a
;
e
[
b
]
=
x
;
}
}