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