URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [pr44948-1b.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -mno-avx -Wno-psabi -mtune=generic" } */ struct A { long b[8] __attribute__((aligned (32))); }; void foo (long double x, struct A y) { int i; if (x != 8.0L) __builtin_abort (); for (i = 0; i < 8; i++) if (y.b[i] != i) __builtin_abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log