1 /* PR tree-optimization/21021
3 The front end produces a comparison of mismatched types, namely an
4 integer and a pointer, causing VRP to compute TYPE_MAX_VALUE for a
5 pointer, which we cannot. */
7 extern void *bar (void);
10 foo (unsigned int *p
, unsigned int *q
)
12 const void *r
= bar ();
14 if (r
>= (const void *) *p
15 && r
< (const void *) *q
)