[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr50650.c
blob6c443e6475cf2d54d153d638d46035e217a7aeb6
1 /* PR tree-optimization/50650 */
3 unsigned int
4 foo (unsigned int x, unsigned int y)
6 int i;
7 for (i = 8; i--; x <<= 1)
8 y ^= (x ^ y) & 0x80 ? 79U : 0U;
9 return y;