aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr57741-2.c
blob: 2b1151ef2ccc5f10ae6d33cd212db114f9cfd1cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* PR tree-optimization/57741 */
/* { dg-do run } */
/* { dg-require-effective-target vect_float } */
/* { dg-additional-options "-ffast-math" } */

#include "tree-vect.h"

extern void abort (void);

__attribute__((noinline, noclone)) void
foo (float *p, float *q, float x)
{
  int i;
  p = (float *) __builtin_assume_aligned (p, 32);
  q = (float *) __builtin_assume_aligned (q, 32);
  float f = 1.0f, g = 2.0f;
  for (i = 0; i < 1024; i++)
    {
      *p++ = f;
      f += x;
    }
  for (i = 0; i < 1024; i++)
    {
      *q++ = g;
      g += 0.5f;
    }
}

float p[1024] __attribute__((aligned (32))) = { 17.0f };
float q[1024] __attribute__((aligned (32))) = { 17.0f };

int
main ()
{
  int i;
  check_vect ();
  foo (p, q, 1.5f);
  for (i = 0; i < 1024; i++)
    if (p[i] != 1.0f + i * 1.5f || q[i] != 2.0f + i * 0.5f)
      abort ();
  return 0;
}

/* { dg-final { scan-tree-dump-times "vectorized 2 loop" 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */