<div dir="ltr">I thought the code like below should compile with Clang:<div>        <div>        int **p;<br>        p = new int*[1024];<br>        for (int i=0;i<1024;i++)<br>                p[i] = new int[1024];<br>#pragma omp target parallel for map(p[0:1024][0:1024]) reduction(+: sum)</div></div><div><br></div><div>... but I get a build-time error. Is this expected even in the recent trunk?</div></div>