IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / vector-4.c
blob9fa60ded8d19e0d72ba73706c179801f3096c57d
1 /* { dg-do compile } */
2 /* { dg-options "-fno-common" { target { { hppa*-*-hpux* } && { ! hppa*64*-*-* } } } } */
3 #define vector __attribute__((vector_size(4*sizeof(int)) ))
5 vector int a, b, c;
8 /* Test that remainder works for vectors. */
9 void f(void)
11 a = b % c;