aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/args-2.c
blob: 192756525f8b4578709e261f43aa3e8db4d154fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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);
}