Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-4.c
blobcc4d5041f63620a3c655d385a2abbc7d1a0d27dc
1 /* { dg-do compile } */
2 /* { dg-options "-fno-common" { target { { hppa*-*-hpux* } && { ! lp64 } } } } */
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;