From 544f8c7f3959f21fa7d85768c3bbb5402bf15ea6 Mon Sep 17 00:00:00 2001 From: Shilei Tian Date: Thu, 26 Jan 2023 23:45:02 -0500 Subject: [PATCH] [OpenMP] Fix stack overflow for test bug54082.c When `N` is 1024, `int result[N][N]` is obviously large stack that Windows cannot support... Fix #60326. Reviewed By: jdoerfert Differential Revision: https://reviews.llvm.org/D142684 --- openmp/runtime/test/parallel/bug54082.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmp/runtime/test/parallel/bug54082.c b/openmp/runtime/test/parallel/bug54082.c index 3d1eca916d6f..103babba291e 100644 --- a/openmp/runtime/test/parallel/bug54082.c +++ b/openmp/runtime/test/parallel/bug54082.c @@ -6,7 +6,7 @@ #include #include -#define N 1024 +#define N 128 int main(int argc, char *argv[]) { int errors = 0;