aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_stack_varargs.in
blob: 01c231af452da9af3476b3d0c6e23084a1bb5169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// We should not blow up the stack with numerous varargs
#include <stdio.h>
#include <stdlib.h>

void func(int i) {
  printf(
      "%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,"
      "%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\n",
      i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i,
      i, i, i, i, i, i, i, i, i, i, i, i, i, i);
}
int main() {
  for (int i = 0; i < 1024; i++) func(i);
  printf("ok!\n");
  return 0;
}