Fix MODE=tiny build

This commit is contained in:
Justine Tunney 2023-10-08 09:34:15 -07:00
parent 791f79fcb3
commit 94dc7a684e
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -86,6 +86,8 @@ int StackOverflow(int f(), int n) {
int (*pStackOverflow)(int (*)(), int) = StackOverflow;
TEST(stackoverflow, standardStack_altStack_process_longjmp) {
if (IsTiny()) return; // TODO(jart): why?
int jumpcode;
if (!(jumpcode = setjmp(recover))) {
exit(pStackOverflow(pStackOverflow, 0));