https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76739
Bug ID: 76739
Summary: Add support dynamically allocated multi-dimensional
arrays in OpenACC data clauses
Product: gcc
Version: 7.0
Status: UNCONFIRMED
Severity: enhancement
Priority: P3
Component: other
Assignee: unassigned at gcc dot gnu.org
Reporter: cltang at gcc dot gnu.org
Target Milestone: ---
According to the OpenACC specification, dynamically allocated multi-dimensional
arrays are to be supported in C/C++, for example:
typedef float row[200]; row* BB;
float* CC[200];
float** DD;
We will be using this PR to track this development.