Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PR feedback
  • Loading branch information
VSadov committed Jan 26, 2022
commit be348b9218e43d34ea51b243030cab6adc725c91
6 changes: 0 additions & 6 deletions src/coreclr/debug/ee/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14725,12 +14725,6 @@ HRESULT Debugger::IterateAppDomainsForPdbs()
if (!pDomainAssembly->IsVisibleToDebugger())
continue;

if (pDomainAssembly->ShouldNotifyDebugger())
{
Module* pRuntimeModule = pDomainAssembly->GetModule();
CopyModulePdb(pRuntimeModule);
}

if (pDomainAssembly->ShouldNotifyDebugger())
{
CopyModulePdb(pDomainAssembly->GetModule());
Expand Down
4 changes: 1 addition & 3 deletions src/coreclr/debug/inc/dbgipcevents.h
Original file line number Diff line number Diff line change
Expand Up @@ -854,8 +854,6 @@ typedef VMPTR_Base<DT_CONTEXT, void > VMPTR_CONTEXT;
DEFINE_VMPTR(class DomainAssembly, PTR_DomainAssembly, VMPTR_DomainAssembly);
DEFINE_VMPTR(class Module, PTR_Module, VMPTR_Module);

// DomainAssembly derives from DomainAssembly and represents a manifest module.
DEFINE_VMPTR(class DomainAssembly, PTR_DomainAssembly, VMPTR_DomainAssembly);
DEFINE_VMPTR(class Assembly, PTR_Assembly, VMPTR_Assembly);

DEFINE_VMPTR(class PEAssembly, PTR_PEAssembly, VMPTR_PEAssembly);
Expand Down Expand Up @@ -1679,7 +1677,7 @@ struct MSLAYOUT DebuggerIPCE_FuncEvalInfo
DebuggerIPCE_FuncEvalType funcEvalType;
mdMethodDef funcMetadataToken;
mdTypeDef funcClassMetadataToken;
VMPTR_DomainAssembly vmDomainAssembly;
VMPTR_DomainAssembly vmDomainAssembly;
RSPTR_CORDBEVAL funcEvalKey;
bool evalDuringException;

Expand Down
Loading