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