blob: bd772d2cd7420208ea39eda0d82d867d9d89451f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-options "-O -mgp64 (-mips16)" } */
/* { dg-final { scan-assembler "\tmultu?\t" } } */
/* { dg-final { scan-assembler "\tmflo\t" } } */
/* { dg-final { scan-assembler-not "\tmfhi\t" } } */
typedef int SI __attribute__((mode(SI)));
MIPS16 SI
f (SI x, SI y)
{
return x * y;
}
|