1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-threadfull1-stats" } */
4 void foo (int nest
, int print_nest
)
7 _Bool t1
= nest
== print_nest
;
14 if (print_nest
== nest
)
18 /* We should be able to thread (t2) to !(print_nest == nest) using the
19 nest == print_nest relation implied by the entry block. */
20 /* { dg-final { scan-tree-dump "Jumps threaded: 1" "threadfull1" } } */