* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / pr63995-1.C
blob41a1c01153bcdcd15ee755c00bce3c83770a99ff
1 /* { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } */
2 /* { dg-options "-O2 -g -fcheck-pointer-bounds -mmpx" } */
4 int test1 (int i)
6   extern const int arr[10];
7   return arr[i];
10 extern const int arr[10];
12 int test2 (int i)
14   return arr[i];