[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / obj-c++.dg / tls / static-1a.mm
bloba19aba290e9da01506faf25d1e6ba7603fcccf07
1 // { dg-skip-if "Additional Source File"  *-*-*  }
2 // This is the additional source file for test static-1.mm
4 struct A
6   static __thread int i;
7 };
9 int
10 test ()
12   if (A::i != 8)
13     return 1;
15   A::i = 17;
16   return 0;