PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83930.c
blob8a079af3fb43b519f1c678556d399328d5c3e5fb
1 /* PR target/83930 */
2 /* { dg-do compile } */
3 /* { dg-options "-Og -fno-tree-ccp -w" } */
5 unsigned __attribute__ ((__vector_size__ (16))) v;
7 static inline void
8 bar (unsigned char d)
10 v /= d;
13 __attribute__ ((always_inline)) void
14 foo (void)
16 bar (4);