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