mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-02 15:16:03 +00:00
[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:
parent
8e8dd110be
commit
544f8c7f39
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user