Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / chkp-privatize-2_0.c
blobbe7f601e399b2c93320d9f3394711e6e4f6145d8
1 /* { dg-lto-do link } */
2 /* { dg-require-effective-target mpx } */
3 /* { dg-lto-options { { -Ofast -flto -fcheck-pointer-bounds -mmpx } } } */
5 static int
6 __attribute__ ((noinline))
7 func1 (int i)
9 return i + 2;
12 extern int func2 (int i);
14 int
15 main (int argc, char **argv)
17 return func1 (argc) + func2 (argc) + 1;