jmpbug.c 490 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* setjmp vs alloca test case. Exercised bug on sparc. */
  2. #include <stdio.h>
  3. #include <setjmp.h>
  4. #include <alloca.h>
  5. static void
  6. sub5 (jmp_buf buf)
  7. {
  8. longjmp (buf, 1);
  9. }
  10. static void
  11. test (int x)
  12. {
  13. jmp_buf buf;
  14. char *foo;
  15. int arr[100];
  16. arr[77] = x;
  17. if (setjmp (buf))
  18. {
  19. printf ("made it ok; %d\n", arr[77]);
  20. return;
  21. }
  22. foo = (char *) alloca (128);
  23. sub5 (buf);
  24. }
  25. int
  26. main (void)
  27. {
  28. int i;
  29. for (i = 123; i < 345; ++i)
  30. test (i);
  31. return 0;
  32. }