ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/mips/mult-2.c

15 lines
392 B
C

/* { dg-options "-mgp64 (-mips16)" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
/* { dg-final { scan-assembler "\tdmult\t" } } */
/* { dg-final { scan-assembler "\tmfhi\t" } } */
/* { dg-final { scan-assembler "\tmflo\t" } } */
typedef int TI __attribute__((mode(TI)));
typedef int DI __attribute__((mode(DI)));
MIPS16 TI
f (DI x, DI y)
{
return (TI) x * y;
}