aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-24.c
blob: a4353bf7e7c184d1411ffc01e158e8ede00aaa1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-pre" } */

void foo(int *p, double *x, int n)
{
  int i;
  for (i = 0; i < n; ++i)
    *(x + *p * i) = 0.0;
}

/* We should remove the unnecessary insertion of a phi-node and
   _not_ end up using the phi result for replacement *p.  */

/* { dg-final { scan-tree-dump-not "= prephitmp" "pre" } } */