[Openmp-commits] [openmp] [compiler-rt] [clang] [mlir] [libcxx] [libcxxabi] [clang-tools-extra] [libc] [flang] [llvm] [clang] Avoid -Wshadow warning when init-capture named same as class field (PR #74512)

Mariya Podchishchaeva via Openmp-commits openmp-commits at lists.llvm.org
Fri Jan 26 09:42:09 PST 2024


================
@@ -8395,10 +8395,11 @@ void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
 
   unsigned WarningDiag = diag::warn_decl_shadow;
   SourceLocation CaptureLoc;
-  if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC &&
-      isa<CXXMethodDecl>(NewDC)) {
+  if (isa<VarDecl>(D) && NewDC && isa<CXXMethodDecl>(NewDC)) {
     if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) {
       if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) {
+        if (!isa<VarDecl>(ShadowedDecl))
----------------
Fznamznon wrote:

I changed this all, so probably not relevant anymore.

https://github.com/llvm/llvm-project/pull/74512


More information about the Openmp-commits mailing list