/* Check the case when index is out of bound *//* { dg-do compile } *//* { dg-options "-Warray-bounds" } */#define vector __attribute__((vector_size(16) ))inttest0(void){vectorinta;returna[10];/* { dg-warning "index value is out of bound" } */}inttest1(void){vectorinta;returna[-1];/* { dg-warning "index value is out of bound" } */}