summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/ext-5.c
blob: 64186383cb2c09c0f24cae826324ee6df7ff4bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* For MIPS32r2 use EXT when ANDing with low-order bitmasks.  */
/* { dg-do compile } */
/* { dg-options "-O isa_rev>=2" } */
/* { dg-final { scan-assembler "\text\t" } } */
/* { dg-final { scan-assembler-not "\tandi?\t" } } */

NOMIPS16 unsigned
f (unsigned i)
{
  return i & 0x7ffffff;
}