view gcc/testsuite/gcc.dg/lto/chkp-static-bounds_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 { { -flto -flto-partition=max -fcheck-pointer-bounds -mmpx } } } */

const char *cc;

int test1 (const char *c)
{
  c = __builtin___bnd_init_ptr_bounds (c);
  cc = c;
  return c[0] * 2;
}

struct S
{
  int (*fnptr) (const char *);
} S;

struct S s1 = {test1};
struct S s2 = {test1};
struct S s3 = {test1};

int main (int argc, const char **argv)
{
  return s1.fnptr (argv[0]) + s2.fnptr (argv[1]);
}