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
3 changes: 3 additions & 0 deletions src/coreclr/vm/reflectioninvocation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,9 @@ extern "C" void QCALLTYPE RuntimeMethodHandle_InvokeMethod(
callDescrData.dwRegTypeMap = 0;
#endif
callDescrData.fpReturnSize = argit.GetFPReturnSize();
#ifdef TARGET_WASM
callDescrData.nArgsSize = nStackBytes;
#endif // TARGET_WASM

// This is duplicated logic from MethodDesc::GetCallTarget
PCODE pTarget;
Expand Down
Loading