/* PR tree-optimization/21021 The front end produces a comparison of mismatched types, namely an integer and a pointer, causing VRP to compute TYPE_MAX_VALUE for a pointer, which we cannot. */externvoid*bar(void);intfoo(unsignedint*p,unsignedint*q){constvoid*r=bar();if(r>=(constvoid*)*p&&r<(constvoid*)*q)return1;return0;}