This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
How this interact with C99 VLAs or alloca?
Also how does GOMP interact with nested functions?
#pragma omp for shared (a), private (i) for (int i = 0; i < N; i++) a[i] = ...
Those seems like places where GOMP can go wrong.
main() { void foo (int n) { int i; int c[n]; char *x = alloca (10);
foo (80); }
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |