aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/swaps-p8-24.c
blob: 45e30bc8edf9e1c30ed78cb94060ad6f64f64294 (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
/* { dg-do compile } */
/* { dg-options "-mdejagnu-cpu=power8 -mvsx -O3 -ffast-math" } */
/* { dg-require-effective-target powerpc_vsx } */
/* { dg-final { scan-assembler "lxvd2x" } } */
/* { dg-final { scan-assembler-not "xxpermdi" } } */

/* Verify that swap optimization works correctly in the presence of
   a V4SFmode reduction.  */

extern double optvalue;
extern void obfuscate (float, unsigned int);

void
foo (float *x, float *y, unsigned int n, unsigned int m)
{
  unsigned int i, j;
  float sacc;
  for (j = 0; j < m; ++j)
    {
      sacc = 0.0f;
      for (i = 0; i < n; ++i)
	sacc += x[i] * y[i];
      obfuscate (sacc, n);
    }
  optvalue = n * 2.0f * m;
}