update test_stack_overflow for new llvm, which is much harder to trick into hitting a stack overflow

This commit is contained in:
Alon Zakai 2015-10-15 14:08:41 -07:00
Родитель 4129850af0
Коммит e55cdf4abc
1 изменённых файлов: 11 добавлений и 6 удалений

Просмотреть файл

@ -1,25 +1,30 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <emscripten.h>
void recurse(int x);
void recurse(unsigned int x);
void act(volatile int *a) {
void act(volatile unsigned int *a) {
printf("act %d\n", *a);
int b = (int)(intptr_t)(alloca(*a));
unsigned int b = (int)(intptr_t)(alloca(*a));
if (b < *a) *a--;
recurse(*a);
}
void recurse(int x) {
void recurse(volatile unsigned int x) {
printf("recurse %d\n", x);
volatile int a = x;
volatile unsigned int a = x;
volatile char buffer[1000*1000];
buffer[x/2] = 0;
buffer[(x-1)/2] = 0;
EM_ASM({});
if (x*x < x) {
act(&a);
if (a < x) x = a;
x--;
return;
}
x += buffer[x/2];
if (x > 0) recurse(x-1);
}