PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-shift3.c
blobc26fb8d98ca9e0dd6946bf07da92febc3f055b81
1 /* { dg-do compile } */
3 #define vector(elcount, type) \
4 __attribute__((vector_size((elcount)*sizeof(type)))) type
7 int main (int argc, char *argv[]) {
8 vector(8, short) v0 = {(short)argc,2,3,4,5,6,7};
9 short sc;
12 scalar1 <<= v0; /* { dg-error "scalar1.*(undeclared|was not declared)" } */
14 return 0;