[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr58343.c
blobcdd2ce9f4a62c38df53495de1fd0d45eca13a3ce
1 int a;
3 int main ()
5 int b = a;
7 for (a = 1; a > 0; a--)
10 lbl:
11 if (b && a)
12 goto lbl;
14 return 0;