summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/div-7.c
blob: 68f1658484b40e955b87f3dc2db1e82f3466a707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-options "-O -mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tdiv\t" } } */
/* { dg-final { scan-assembler-not "\tmflo\t" } } */
/* { dg-final { scan-assembler "\tmfhi\t" } } */

typedef int SI __attribute__((mode(SI)));

MIPS16 SI
f (SI x, SI y)
{
  return x % y;
}