2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / args-2.c
blob192756525f8b4578709e261f43aa3e8db4d154fa
1 /* Check the _MIPSEB and _MIPSEL macros are accurate. */
2 /* { dg-do run } */
3 extern void abort (void);
4 extern void exit (int);
6 short foo = 1;
7 int main ()
9 char *p = (char *) &foo;
11 #ifdef _MIPSEB
12 if (p[0] != 0 || p[1] != 1)
13 #else
14 if (p[0] != 1 || p[1] != 0)
15 #endif
16 abort ();
17 exit (0);