[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980602-2.c
blob972553ed584c7659a382bd44b27ea38ee8fa6e6c
1 /* The bit-field below would have a problem if __INT_MAX__ is too
2 small. */
3 #if __INT_MAX__ < 2147483647
4 int
5 main (void)
7 exit (0);
9 #else
10 struct {
11 unsigned bit : 30;
12 } t;
14 int main()
16 if (!(t.bit++))
17 exit (0);
18 else
19 abort ();
21 #endif