1 /* { dg-do compile } */ 2 /* { dg-options "-fno-common" { target { { hppa*-*-hpux* } && { ! lp64 } } } } */ 3 #define vector __attribute__((vector_size(4*sizeof(int)) )) 4 5 vector int a, b, c; 6 7 8 /* Test that remainder works for vectors. */ f(void)9 void f(void) 10 { 11 a = b % c; 12 } 13