aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr30665-1.c
blob: 4650408d594856a0a3ccc05731b48182e56ccf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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);
}