URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr47968.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-w -Wno-psabi" } */ typedef __attribute__ ((vector_size (16))) float float4; typedef __attribute__ ((vector_size (16))) double double2; float foo (double2 d2) { float4 f4 = (float4) d2; return *(float *) &f4; }
Go to most recent revision | Compare with Previous | Blame | View Log