]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/i386/mpx/struct-arg-3-ubv.c
Daily bump.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / struct-arg-3-ubv.c
CommitLineData
ee8f136a
IE
1/* { dg-do run } */
2/* { dg-shouldfail "bounds violation" } */
3/* { dg-options "-fcheck-pointer-bounds -mmpx" } */
4
5
6#define SHOULDFAIL
7
8#include "mpx-check.h"
9
10struct s1
11{
12 int *p;
13 int i1;
14 int i2;
15} s1;
16
17int rd (int *p1, struct s1 s)
18{
19 int res = s.p[s.i1 + s.i2];
20 printf ("%d\n", res);
21 return res;
22}
23
24int buf[100];
25int buf1[10];
26
27int mpx_test (int argc, const char **argv)
28{
29 struct s1 s;
30 s.p = buf;
31 s.i1 = 50;
32 s.i2 = 50;
33
34 rd (buf1, s);
35
36 return 0;
37}