PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr77860.c
blob04346b16e779fc1cd7cd4d80e5a9f511a1b5207e
1 /* PR tree-optimization/77860 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fno-tree-vrp -fno-tree-forwprop -Wno-psabi" } */
5 typedef unsigned short V __attribute__((vector_size (16)));
8 foo (V x, V y)
10 V a = -x;
11 V b = -y;
12 return a * b;