cgraph: A COMDAT decl always has non-zero address.
[gcc.git] / gcc / testsuite / c-c++-common / vector-scalar.c
1 /* { dg-do compile } */
2
3 typedef float vecf __attribute__ ((vector_size (4 * sizeof (float))));
4 typedef short veci __attribute__ ((vector_size (8 * sizeof (short))));
5
6 void f (vecf *d, veci *i)
7 {
8 (void) ((*d *= 2) < 0);
9 (void) ((((*i - 1) >> 2) != 0) | *i);
10 }