OSDN Git Service

PR rtl-optimization/52139
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-23.c
1 /* { dg-do compile } */ 
2 /* { dg-options "-O2 -fdump-tree-reassoc1" } */
3
4 unsigned int
5 foo(unsigned int a, unsigned int b, unsigned int c, unsigned int d,
6     unsigned int e, unsigned int f, unsigned int g, unsigned int h)
7 {
8   /* Should be transformed into e = 20 */
9   unsigned int i = (a + 9) + (c + 8);
10   unsigned int j = (-c + 1) + (-a + 2);
11
12   e = i + j;
13   return e;
14 }
15
16 /* { dg-final { scan-tree-dump-times "= 20" 1 "reassoc1"} } */
17 /* { dg-final { cleanup-tree-dump "reassoc1" } } */