blob: 107d0ff4b5feb199d3efd8080d02f6b7ae79b759 [file] [log] [blame]
/* { dg-do compile } */
/* APPLE LOCAL darwin needs -fstrict-aliasing */
/* { dg-options "-Wstrict-aliasing -O2 -fstrict-aliasing" } */
int a[2];
double *foo1(void)
{
return (double *)a; /* { dg-warning "strict-aliasing" } */
}
double *foo2(void)
{
return (double *)&a[0]; /* { dg-warning "strict-aliasing" } */
}
_Complex x;
int *bar(void)
{
return (int *)&__imag x; /* { dg-warning "strict-aliasing" } */
}