1 /* This testcase exposed the same bug as PR 15342. */
2 /* { dg-options "-O2 -frename-registers -fno-schedule-insns" } */
4 void *memcpy (void *, const void *, __SIZE_TYPE__
);
6 void f (int n
, int (*x
)[4])
12 memcpy (&x
[1], &x
[0], sizeof (x
[0]));
14 memcpy (&x
[f
], &x
[0], sizeof (x
[0]));