Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr41101.c
blob: 8d21a00ce8a4e5d031808651d42cb62a9d87020d [
file
] [
log
] [
blame
]
int
func
(
int
);
void
bug
(
int
*
x
,
int
*
y
,
unsigned
long
int
N
)
{
unsigned
long
int
i
;
int
*
t
;
while
(
1
)
{
for
(
i
=
1
;
i
<=
N
;
i
++)
{
y
[
i
]
=
func
(
x
[
i
]
-
x
[
1
]);
if
(
y
[
i
])
return
;
}
t
=
x
;
x
=
y
;
y
=
t
;
}
}