blob: 7cc50af999be74f8c6460980020fcf3b1c424d84 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-w" } */
#define vector __attribute__((vector_size(16) ))
/* Check that vector[index] works and index[vector] is rejected. */
float vf(vector float a)
{
return 0[a]; /* { dg-error "subscripted value is neither array nor pointer nor vector" } */
}
float fv(vector float a)
{
return a[0];
}