PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr38200.c
blobd5391bd889e8fd0f0a146a1d3fc7d5ae47f9b4c0
1 /* PR middle-end/38200 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fno-strict-aliasing" } */
5 typedef int (*callptr) (void);
6 int foo (void **x);
7 void foo2 (callptr *);
8 int (*foo_ptr) (void **x) = foo;
10 void
11 bar (void)
13 void *ptr;
14 foo2 ((callptr *) &ptr);
15 *(void **) &foo_ptr = ptr;