Jan =?utf-8?q?Kokemüller?= <[email protected]>,
Jan =?utf-8?q?Kokemüller?= <[email protected]>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/[email protected]>


================
@@ -294,6 +294,13 @@ Sema::getCurrentMangleNumberContext(const DeclContext *DC) 
{
   bool IsInNonspecializedTemplate =
       inTemplateInstantiation() || CurContext->isDependentContext();
 
+  // If we must allocate mangling numbers but the `ManglingContextDecl`
+  // is a local variable, use the `DeclContext` containing the lambda 
expression
+  // instead.
+  if (VarDecl *Var = dyn_cast_or_null<VarDecl>(ManglingContextDecl);
+      Var && Var->isLocalVarDecl())
+    ManglingContextDecl = const_cast<Decl *>(cast<Decl>(DC));
----------------
ChuanqiXu9 wrote:

If this only happens for modules, I'd like to move it to the following check 
for modules.

https://github.com/llvm/llvm-project/pull/179035
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to