1 /* PR target/65523 */ 2 /* { dg-do compile { target { ! x32 } } } */ 3 /* { dg-options "-O -fcheck-pointer-bounds -mmpx" } */ 4 fn1()5 int *fn1() 6 { 7 int *r = fn1(); 8 if (r == (void *)0) 9 return r; 10 } 11