summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/madd-7.c
blob: 93ed0fc6f06ae8d0e5dbff40cd9d4fa32d4beee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -mlong32 added because of PR target/38598.  */
/* { dg-options "-O2 -march=5kc -mlong32" } */
/* { dg-final { scan-assembler-not "\tmul\t" } } */
/* { dg-final { scan-assembler "\tmadd\t" } } */

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

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