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

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