aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/pr26449.c
blob: 7a61296844489547fa26e4c52db2d27e804900ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O1 -ftree-vectorize -march=pentium4 -std=c99" } */

void matmul_i4 (int bbase_yn, int xcount)
{
  int x;
  int * restrict dest_y;
  const int * abase_n;

  for (x = 0;  x < xcount;  x++)
    {
      dest_y[x] += abase_n[x] * bbase_yn;
    }
}