PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr64805.c
blob3c8d6668dfaf194c75312fe5b9e23d5220b41490
1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
4 #include <stdio.h>
6 static inline void __attribute ((always_inline)) functionA(void)
8 return;
11 static inline void __attribute ((always_inline)) functionB(void)
13 functionA();
16 int test(void)
18 functionB();
20 return 0;