2 /* { dg-options "-O2" } */
4 extern int link_error (int);
6 int tst2 (int x
, int y
)
8 /* VRP should be able to extract range information for
9 x and y out of this TRUTH_AND_EXPR. */
10 if ((x
> 5555) && (y
< 6666))
16 return link_error (2222);
19 return link_error (3333);
21 return link_error (4444);