Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / chkp-thunk-comdat-3.c
blobdd0057e298195a953656794eacecfc6e62a486ec
1 /* { dg-do compile } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx -O -fvisibility=hidden" } */
4 int val;
6 static int __attribute__((noinline))
7 test1 ()
9 return val;
12 static int __attribute__((bnd_legacy,noinline))
13 test2 ()
15 return test1 ();
18 int
19 test3 (void)
21 return test2 ();