aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.dg/pr45733.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.dg/pr45733.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.dg/pr45733.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.dg/pr45733.c b/gcc-4.8/gcc/testsuite/gcc.dg/pr45733.c
new file mode 100644
index 000000000..5c83cd42c
--- /dev/null
+++ b/gcc-4.8/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;
+}