view gcc/testsuite/gcc.dg/lto/chkp-privatize-2_0.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-lto-do link } */
/* { dg-require-effective-target mpx } */
/* { dg-lto-options { { -Ofast -flto -fcheck-pointer-bounds -mmpx } } } */

static int
__attribute__ ((noinline))
func1 (int i)
{
  return i + 2;
}

extern int func2 (int i);

int
main (int argc, char **argv)
{
  return func1 (argc) + func2 (argc) + 1;
}