summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/warn-2.c
blob: 0a9fa1e3ff35dd6306b2fc76508f9ea19355c85f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
/* { dg-options "-O -mcpu=power7 -mno-altivec" } */

/* { dg-warning "-mno-altivec disables vsx" "" { target *-*-* } 1 } */

double
foo (double *x, double *y)
{
  double z[2];
  int i;

  for (i = 0; i < 2; i++)
    z[i] = x[i] + y[i];
  return z[0] * z[1];
}

/* { dg-final { scan-assembler-not "xsadddp" } } */