(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
mips/
args-2.c
       1  /* Check the _MIPSEB and _MIPSEL macros are accurate.  */
       2  /* { dg-do run } */
       3  extern void abort (void);
       4  extern void exit (int);
       5  
       6  short foo = 1;
       7  int main ()
       8  {
       9    char *p = (char *) &foo;
      10  
      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);
      18  }