aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/assoc-1.c
blob: f9821910bd01168b49c175cd709e0ff186c954d0 (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
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-raw -fno-tree-reassoc" } */

int f0(int a,int b,int c){
  int d = a + b;
  int e = c + b;
  return d - e;
}
int f1(int a,int b,int c){
  int d = a + b;
  int e = b - c;
  return d - e;
}
int f2(int a,int b,int c){
  int d = a + b;
  int e = c - b;
  return e + d;
}
int f3(int a,int b,int c){
  int d = a - b;
  int e = c - b;
  return d - e;
}
int f4(int a,int b,int c){
  int d = b - a;
  int e = c - b;
  return e + d;
}

/* { dg-final { scan-tree-dump-times "plus_expr" 2 "optimized" } } */
/* { dg-final { scan-tree-dump-times "minus_expr" 3 "optimized" } } */