[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
This commit is contained in:
Shilei Tian 2023-01-26 23:45:02 -05:00
parent 8e8dd110be
commit 544f8c7f39

View File

@ -6,7 +6,7 @@
#include <assert.h>
#include <stdlib.h>
#define N 1024
#define N 128
int main(int argc, char *argv[]) {
int errors = 0;