2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / chkp-always_inline.c
blobc10d1310e0e4b937aa30663282b3d411c6147a61
1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -Wno-attributes" } */
4 static __attribute__((always_inline)) int f1 (int *p)
6 return *p;
9 __attribute__((bnd_legacy)) int f2 (int *p)
11 return f1 (p);