summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/msub-7.c
blob: 7ae96acb42ead34111114cc116c91bf84859fe4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-options "-O2 -march=5kc" } */
/* { dg-final { scan-assembler-not "\tmul\t" } } */
/* { dg-final { scan-assembler "\tmsub\t" } } */

NOMIPS16 int
f1 (int *a, int *b, int n)
{
  int x, i;

  x = 100;
  for (i = 0; i < n; i++)
    x -= a[i] * b[i];
  return x;
}