blob: c4b54b7ec455b62fdedc4627b1de6bd29af5d5ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-options "-O -mgp32 (-mips16)" } */
/* { dg-final { scan-assembler "\tmult\t" } } */
/* { dg-final { scan-assembler "\tmflo\t" } } */
/* { dg-final { scan-assembler "\tmfhi\t" } } */
/* { dg-final { scan-assembler-not "\tdsll\t" } } */
/* { dg-final { scan-assembler-not "\tdsrl\t" } } */
typedef int DI __attribute__((mode(DI)));
typedef int SI __attribute__((mode(SI)));
MIPS16 DI
f (SI x, SI y)
{
return (DI) x * y;
}
|