Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vector28.C
blobea48c9612446a72c925c1469386ccf23ec566782
1 /* { dg-do compile } */
3 typedef int veci __attribute__ ((vector_size (4 * sizeof (int))));
4 typedef float vecf __attribute__ ((vector_size (4 * sizeof (float))));
6 void f (veci *a, vecf *b, int c)
8   *a = c || *b;
9   *a = *a || c;