summaryrefslogtreecommitdiff
path: root/test/setjmp/sigjmpbug.c
blob: 5b1718185218dfde83a92ce2703ff509c9b8e673 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
/* sigsetjmp vs alloca test case.  Exercised bug on sparc.  */

#include <stdio.h>
#include <setjmp.h>
#include <alloca.h>

int ret;
int verbose;

__attribute__ ((__noreturn__))
static void
sub5 (jmp_buf buf)
{
  siglongjmp (buf, 1);
}

static void
test (int x)
{
  sigjmp_buf buf;
  char *foo;
  int arr[100];

  ++ret;

  arr[77] = x;
  if (sigsetjmp (buf, 1))
    {
      --ret;
      if (verbose)
        printf ("made it ok; %d\n", arr[77]);
      return;
    }

  foo = (char *) alloca (128);
  sub5 (buf);
}

int
main (int argc, char *argv[])
{
  int i;

  verbose = (argc != 1);
  ret = 0;

  for (i = 123; i < 345; ++i)
    test (i);

  return ret;
}