URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [args-2.c] - Rev 321
Compare with Previous | Blame | View Log
/* Check the _MIPSEB and _MIPSEL macros are accurate. */ /* { dg-do run } */ extern void abort (void); extern void exit (int); short foo = 1; int main () { char *p = (char *) &foo; #ifdef _MIPSEB if (p[0] != 0 || p[1] != 1) #else if (p[0] != 1 || p[1] != 0) #endif abort (); exit (0); }