view gcc/testsuite/gcc.dg/torture/pr30665-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR target/30665: bug in cris.md peephole2 condition.
   Testcase for trunk.  */
/* { dg-do run } */

extern void abort (void);
extern void exit (int);

int  __attribute__ ((__noinline__)) f (unsigned *p, int *x)
{
  int y = *p++ & 0xfff;
  *x++ = y;
  *x = *p;
  return y;
}

int main (void)
{
  unsigned u[2] = { 0x3aad, 0x5ad1 };
  int x[2] = {17689, 23456};

  if (f (u, x) != 0xaad || x[0] != 0xaad || x[1] != 0x5ad1)
    abort ();
  exit (0);
}