summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/struct-copy-1-lbv.c
blob: 3f1ac74d9a7174038d5d79fdef6b929acd7fdc5e (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
27
28
29
30
31
32
/* { dg-do run } */
/* { dg-shouldfail "bounds violation" } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#define SHOULDFAIL

#include "mpx-check.h"

int buf1[100];
int buf2[200];

struct s1 {
  int a;
  int *p[2];
} s1;

struct s2 {
  int a;
  struct s1 b[2];
} s2;

struct s2 s = { 1, { {1, { buf1, buf2 }}, {2, { buf2, buf1} } } };

int mpx_test (int argc, const char *argv[])
{
  struct s2 ss = s;

  printf ("%d\n", ss.b[0].p[0][-1]);

  return 0;
}