[PR64164] Drop copyrename, use coalescible partition as base when optimizing.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr48493.c
blobddb61f2e067acd889d8fa2dd97d880245c3c3bbf
1 /* { dg-do compile } */
3 typedef long long T __attribute__((may_alias, aligned (1)));
5 struct S
7 _Complex float d __attribute__((aligned (8)));
8 };
10 void bar (struct S);
12 void
13 f1 (T x)
15 struct S s;
16 *(T *) ((char *) &s.d + 1) = x;
17 bar (s);