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

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

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