Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr45733.c
blob: 5c83cd42ca5eddc659290eb9eba624c333bc8106 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O -fstrict-overflow -ftree-vectorize" } */
typedef
__INTPTR_TYPE__
intptr_t
;
intptr_t
foo
(
void
**
p
,
int
i
)
{
intptr_t
x
=
0
;
while
(
i
--)
x
^=
(
intptr_t
)
p
[
i
];
return
x
;
}