summaryrefslogtreecommitdiff
path: root/src/vm/appdomain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/appdomain.cpp')
-rw-r--r--src/vm/appdomain.cpp22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/vm/appdomain.cpp b/src/vm/appdomain.cpp
index eb70175f37..f28e45a7d8 100644
--- a/src/vm/appdomain.cpp
+++ b/src/vm/appdomain.cpp
@@ -2567,28 +2567,14 @@ StackWalkAction SystemDomain::CallersMethodCallbackWithStackMark(CrawlFrame* pCf
if (frame && frame->GetFrameType() == Frame::TYPE_MULTICAST)
{
- // This must be either a secure delegate frame or a true multicast delegate invocation.
+ // This must be either a multicast delegate invocation.
_ASSERTE(pFunc->GetMethodTable()->IsDelegate());
- DELEGATEREF del = (DELEGATEREF)((SecureDelegateFrame*)frame)->GetThis(); // This can throw.
+ DELEGATEREF del = (DELEGATEREF)((MulticastFrame*)frame)->GetThis(); // This can throw.
- if (COMDelegate::IsSecureDelegate(del))
- {
- if (del->IsWrapperDelegate())
- {
- // On ARM, we use secure delegate infrastructure to preserve R4 register.
- return SWA_CONTINUE;
- }
- // For a secure delegate frame, we should return the delegate creator instead
- // of the delegate method itself.
- pFunc = (MethodDesc*) del->GetMethodPtrAux();
- }
- else
- {
- _ASSERTE(COMDelegate::IsTrueMulticastDelegate(del));
- return SWA_CONTINUE;
- }
+ _ASSERTE(COMDelegate::IsTrueMulticastDelegate(del));
+ return SWA_CONTINUE;
}
// Return the first non-reflection/remoting frame if no stack mark was