[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr60502.c
blob8dd2de44dae246c93f5e2219a357e311b5e2d555
1 /* PR tree-optimization/60502 */
3 typedef signed char v16i8 __attribute__ ((vector_size (16)));
4 typedef unsigned char v16u8 __attribute__ ((vector_size (16)));
6 void
7 foo (v16i8 *x)
9 v16i8 m1 = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
10 *x |= *x ^ m1;
13 void
14 bar (v16u8 *x)
16 v16u8 m1 = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
17 *x |= *x ^ m1;