blob: cecc82cdf58418574b871e4392cba18f04fba4c3 [file] [log] [blame]
/* { dg-do compile } */
struct __attribute__((may_alias)) S { long long low; int high; };
struct S foo (void);
long double
bar (void)
{
long double a;
*(struct S *)&a = foo ();
return a;
}