aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-sink-2.c
blob: 1d54d019e7fbb2c512e61e701c63082a1a0cc010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-sink-stats" } */
int
bar (int a, int b, int c)
{
  int y = a * b;
  if (c)
    y = 12;
  return y;
}
/* We should sink the x = a * b calculation into the else branch  */
/* { dg-final { scan-tree-dump-times "Sunk statements: 1" 1 "sink" } } */
/* { dg-final { cleanup-tree-dump "sink" } } */