summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-nov.c
blob: e42ecba4e2a51e97d84b1fda64201134ebd2a181 (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
/* { dg-do run } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#include "mpx-check.h"

int buf[100];

int rd (int t1, int t2, int t3, int t4, int t5, int t6, int *p, int i)
{
  int res = p[i];
  printf ("%d\n", res);
  return res;
}

int mpx_test (int argc, const char **argv)
{
  int *p;

  rd (0, 0, 0, 0, 0, 0, buf, 0);
  rd (0, 0, 0, 0, 0, 0, buf, 99);

  return 0;
}