URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [930930-2.c] - Rev 688
Compare with Previous | Blame | View Log
int test_endianness() { union doubleword { double d; unsigned long u[2]; } dw; dw.d = 10; return dw.u[0] != 0 ? 1 : 0; } int test_endianness_vol() { union doubleword { volatile double d; volatile long u[2]; } dw; dw.d = 10; return dw.u[0] != 0 ? 1 : 0; } main () { if (test_endianness () != test_endianness_vol ()) abort (); exit (0); }