aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr32366.c
blob: e83d579e946d556dff87697e7bc5883aeb3213c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

/* { dg-do compile } */
/* { dg-require-effective-target vect_float } */

stream_test (void)
{
  static float input[20];
  int k;
  for (k = 0; k < 20; k++)
    input[k] = k * 1.0;
}

/* { dg-final { cleanup-tree-dump "vect" } } */