[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20041218-2.c
blobd44b54db9a0423759265e0f562117f7b6e8ea105
1 extern void abort (void);
3 int test(int n)
5 struct s { char b[n]; } __attribute__((packed));
6 n++;
7 return sizeof(struct s);
10 int main()
12 if (test(123) != 123)
13 abort ();
14 return 0;