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

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

MIPS16 SI
f (SI x, SI y)
{
  return ((DI) x * y) >> 32;
}