PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr52355.c
blob0a0271f5dffa2a311fd630d47a52e9182eb5a6e1
1 /* { dg-do compile } */
3 void f(char a[16][16][16])
5 __asm volatile ("" : : "i" (&a[1][0][0] - &a[0][0][0]));
8 int main(void)
10 char a[16][16][16];
11 f(a);
12 return 0;