1/* PR 13143 */
2
3int f (void *ptr)
4{
5    extern char const stop[];
6    return ptr >= (void *) &stop;
7}
8
9