Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / chkp-fix-calls-4.c
blob1b7d7032ecb1874fbe75040f1eac7db75043dd9c
1 /* { dg-do compile } */
2 /* { dg-options "-Os -fcheck-pointer-bounds -mmpx" } */
4 typedef void (func) (int *);
6 static inline void
7 bar (func f)
9 int i;
10 f (&i);
13 void
14 foo ()
16 bar (0);