[PATCH] D127803: Generate the capture for field when the field is used in openmp region with implicit default in the member function.

Alexey Bataev via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 2 08:09:32 PDT 2022


ABataev added a comment.

In D127803#3693655 <https://reviews.llvm.org/D127803#3693655>, @jyu2 wrote:

> In D127803#3693301 <https://reviews.llvm.org/D127803#3693301>, @mgabka wrote:
>
>> I noticed that this patch is causing now an assertion failure for cases like :
>>
>> class A{
>>
>>   void a() {
>>     #pragma omp parallel
>>     a(b);
>>   }
>>
>> };
>>
>> The failed assertion is: "const clang::ValueDecl* getCanonicalDecl(const clang::ValueDecl*): Assertion `FD' failed."
>>
>> while before it clang was correctly  reporting error:
>> error: use of undeclared identifier 'b'
>>
>> is it the same assertion you were trying to fix here?
>
> No, the assert I am fixing is when default(firstprivate) is used inside member function.

Could you please investigate and fix it?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127803/new/

https://reviews.llvm.org/D127803



More information about the cfe-commits mailing list