[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr45919.c
blobcaf518db041fcaa4fa5b1603b58f84f972e1d14a
1 /* PR tree-optimization/45919 */
3 const struct S { int a; int b[]; } s = { 0, { 0 }};
5 int
6 foo (void)
8 return s.b[0];