Re: [Patch] OpenACC: C/C++ - fix async parsing [PR99137]

2021-03-04 Thread Thomas Schwinge
Hi! On 2021-02-19T13:59:20+0100, Tobias Burnus wrote: > For: >#pragma acc parallel async(1,2) > > avoid with C an ICE for the original tree: >#pragma acc parallel async(<<< Unknown tree: c_maybe_const_expr 1, 2 >>>) > > It did not ICE with C++, but I think the tree does not make sense, ei

[Patch] OpenACC: C/C++ - fix async parsing [PR99137]

2021-02-19 Thread Tobias Burnus
For: #pragma acc parallel async(1,2) avoid with C an ICE for the original tree: #pragma acc parallel async(<<< Unknown tree: c_maybe_const_expr 1, 2 >>>) It did not ICE with C++, but I think the tree does not make sense, either: #pragma acc parallel async(<<< Unknown tree: void_cst >>>, 2)