blob: 596e5510664f9d5105b1950cff6ef79b71c28eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* { 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]);
}
|