summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/vararg-6-ubv.c
blob: 635a48fc16d2e747b4c2097cdd3499026729311b (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
33
34
35
36
37
38
/* { dg-do run } */
/* { dg-shouldfail "bounds violation" } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#define SHOULDFAIL

#include "mpx-check.h"
#include "stdarg.h"

int buf[100];
int buf1[10];

int rd (int *pp, ...)
{
  va_list argp;
  int *p;
  int i;
  int res;
  int n = 4;

  va_start (argp, pp);
  for (; n > 0; n--)
    va_arg (argp, int *);
  p = va_arg (argp, int *);
  i = va_arg (argp, int);

  res = p[i];
  printf ("%d\n", res);

  return res;
}

int mpx_test (int argc, const char **argv)
{
  rd (buf1, buf1, buf1, buf1, buf1, buf, 100, buf1);
  return 0;
}