aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/mult-1.c
blob: 1038797f22884e3c4830cdc4d75644bccf8462e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* For SI->DI widening multiplication we should use DINS to combine the two
   halves.  For Octeon use DMUL with explicit widening.  */
/* This test requires widening_mul */
/* { dg-options "-mgp64 isa_rev>=2 forbid_cpu=octeon.* -fexpensive-optimizations" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
/* { dg-final { scan-assembler "\tdins\t" } } */
/* { dg-final { scan-assembler-not "\tdsll\t" } } */
/* { dg-final { scan-assembler-not "\tdsrl\t" } } */
/* { dg-final { scan-assembler-not "\tor\t" } } */

NOMIPS16 unsigned long long
f (unsigned int i, unsigned int j)
{
  i++;
  return (unsigned long long) i * j;
}