Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr50827.c
blob: 5d258bfcf0a133e0d29b0e4ef5de23a3a7194203 [
file
] [
log
] [
blame
]
/* PR debug/50827 */
/* { dg-do compile } */
/* { dg-options "-g -O2 -funroll-loops" } */
void
foo
(
int
w
,
int
x
,
int
*
y
,
int
*
z
)
{
float
f
;
while
(
w
--)
{
f
=
x
;
if
(
y
)
*
y
=
(
__INTPTR_TYPE__
)
y
+
w
;
if
(
z
)
*
z
=
w
;
}
}