blob: 218b48295f79dfe8dde333e9e771b8247eea01b7 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fipa-pta" } */
extern void a (void);
void b (void)
{
void *c;
c = a;
*(char *)c = 1;
}