Skip to content
Merged
Changes from 1 commit
Commits
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
5 changes: 5 additions & 0 deletions src/coreclr/vm/reflectioninvocation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,11 @@ static void PrepareMethodHelper(MethodDesc * pMD)

pMD->EnsureActive();

if (pMD->IsAsyncThunkMethod())
{
pMD = pMD->GetAsyncVariant();
}
Comment thread
jakobbotsch marked this conversation as resolved.
Outdated
Comment thread
jakobbotsch marked this conversation as resolved.

if (pMD->ShouldCallPrestub())
pMD->DoPrestub(NULL);

Expand Down
Loading