summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/nested-function-1-ubv.c
blob: b5cf6cc29b3d6f0659339ee14376ea21dba15b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do run } */
/* { dg-shouldfail "bounds violation" } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#define SHOULDFAIL

#include "mpx-check.h"

int mpx_test (int argc, const char **argv)
{
  int a[100];

  void rd (int i)
  {
    printf ("%d\n", a[i]);
  }

  rd (100);

  return 0;
}