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

typedef unsigned int TI __attribute__((mode(TI)));
typedef unsigned int DI __attribute__((mode(DI)));

MIPS16 DI
f (DI x, DI y)
{
  return ((TI) x * y) >> 64;
}