diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr45733.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr45733.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr45733.c b/gcc/testsuite/gcc.dg/pr45733.c new file mode 100644 index 00000000000..5c83cd42ca5 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr45733.c @@ -0,0 +1,13 @@ +/* { 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; +} |