blob: e3912d52826a65e070a6424bb9a6c88be4e168f5 [file] [log] [blame]
/* { dg-do run { target powerpc*-*-eabi* powerpc*-*-elf* powerpc*-*-linux* } } */
/* { dg-options "-O -mlong-double-128" } */
/* SVR4 and EABI both specify that 'long double' is aligned to a 128-bit
boundary in structures. */
struct {
int x;
long double d;
} s;
int main(void)
{
if (sizeof (s) != 32)
abort ();
if ((char *)&s.d - (char *)&s != 16)
abort ();
exit (0);
}