]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.dg/pr26449.c
1a0bdad11111245f5e7f020307f52ee597bb127d
[gcc.git] / gcc / testsuite / gcc.dg / pr26449.c
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-options "-O1 -ftree-vectorize -march=pentium4 -std=c99" } */
3
4 void matmul_i4 (int bbase_yn, int xcount)
5 {
6 int x;
7 int * restrict dest_y;
8 const int * abase_n;
9
10 for (x = 0; x < xcount; x++)
11 {
12 dest_y[x] += abase_n[x] * bbase_yn;
13 }
14 }
15
This page took 0.033485 seconds and 4 git commands to generate.