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

mgabka via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 2 04:27:42 PDT 2022


mgabka added a comment.

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?


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