blob: 621c39196fca3668191b39c06a731916901b770d [file] [log] [blame]
/* { dg-options "-mno-strict-align" } */
/* { dg-do compile } */
struct S {
int a;
double b;
};
struct S GetNumbers();
struct S g;
void foo(){
g = GetNumbers();
}