summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-pr69044.c
blob: 16751f517662c273a77d98b266c8bb9f622cf9fd (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target { ! x32 } } } */
/* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */

int i;
int strncasecmp (char *p1, char *p2, long p3) { return 0; }
int special_command ()
{
  if (strncasecmp (0, 0, 0))
    i++;
}