blob: d5391bd889e8fd0f0a146a1d3fc7d5ae47f9b4c0 [file] [log] [blame]
/* PR middle-end/38200 */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-strict-aliasing" } */
typedef int (*callptr) (void);
int foo (void **x);
void foo2 (callptr *);
int (*foo_ptr) (void **x) = foo;
void
bar (void)
{
void *ptr;
foo2 ((callptr *) &ptr);
*(void **) &foo_ptr = ptr;
}