Index: lib/CodeGen/CGDecl.cpp =================================================================== --- lib/CodeGen/CGDecl.cpp +++ lib/CodeGen/CGDecl.cpp @@ -156,6 +156,8 @@ assert(!D.isExternallyVisible() && "name shouldn't matter"); std::string ContextName; const DeclContext *DC = D.getDeclContext(); + if (auto *CD = dyn_cast(DC)) + DC = cast(CD->getNonClosureContext()); if (const auto *FD = dyn_cast(DC)) ContextName = CGM.getMangledName(FD); else if (const auto *BD = dyn_cast(DC)) Index: test/CodeGen/captured-statements.c =================================================================== --- test/CodeGen/captured-statements.c +++ test/CodeGen/captured-statements.c @@ -14,6 +14,8 @@ int i = 0; #pragma clang __debug captured { + static int inner; + (void)inner; i++; } // CHECK-1: %struct.anon = type { i32* }