Author: Richard Plangger <planri...@gmail.com>
Branch: s390x-backend
Changeset: r81994:eaa7b84cc9cd
Date: 2016-01-28 14:21 +0100
http://bitbucket.org/pypy/pypy/changeset/eaa7b84cc9cd/

Log:    extended the stack limit of s390x

diff --git a/rpython/translator/c/src/stack.h b/rpython/translator/c/src/stack.h
--- a/rpython/translator/c/src/stack.h
+++ b/rpython/translator/c/src/stack.h
@@ -11,6 +11,9 @@
       * value of 768 kb is only enough for 406 levels on ppc64, and 792
       * on ppc64le */
 #    define MAX_STACK_SIZE (11 << 18)    /* 2.8 mb */
+#  elif defined(__s390x__)
+     /* S390X as well has pretty large stack frames. */
+#    define MAX_STACK_SIZE (11 << 18)    /* 2.8 mb */
 #  else
 #    define MAX_STACK_SIZE (3 << 18)    /* 768 kb */
 #  endif
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to