1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
3 
4 int i;
strncasecmp(char * p1,char * p2,long p3)5 int strncasecmp (char *p1, char *p2, long p3) { return 0; }
special_command()6 int special_command ()
7 {
8   if (strncasecmp (0, 0, 0))
9     i++;
10 }
11