summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/nios2/andci.c
blob: 98dfb2d725f59f600fd895afca6e7fc41290b116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O2 -march=r2" } */

/* Test generation of Nios II R2 "andci" and "andchi" instructions.  */

unsigned int f (unsigned int a)
{
  return a & 0xfffffff0;
}

unsigned int g (unsigned int b)
{
  return b & 0xfff0ffff;
}

/* { dg-final { scan-assembler "\tandci\t.*" } }  */
/* { dg-final { scan-assembler "\tandchi\t.*" } }  */