2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr64805.c
blob8ba0a97220863079f5b149d2f5ebbd2bde1296dc
1 /* { dg-do compile } */
2 /* { dg-require-effective-target mpx } */
3 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
5 #include <stdio.h>
7 static inline void __attribute ((always_inline)) functionA(void)
9 return;
12 static inline void __attribute ((always_inline)) functionB(void)
14 functionA();
17 int test(void)
19 functionB();
21 return 0;