Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

[x86/Linux] Mark LeaveCatch as NYI #8384

Merged
merged 3 commits into from
Dec 5, 2016
Merged
Changes from all commits
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/vm/excep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1690,6 +1690,7 @@ BOOL LeaveCatch(ICodeManager* pEECM,
}
CONTRACTL_END;

#ifndef FEATURE_PAL
// We can assert these things here, and skip a call
// to COMPlusCheckForAbort later.

Expand All @@ -1707,6 +1708,10 @@ BOOL LeaveCatch(ICodeManager* pEECM,

SetSP(pCtx, (UINT_PTR)esp);
return TRUE;
#else // FEATURE_PAL
PORTABILITY_ASSERT("LeaveCatch");
return FALSE;
#endif
}
#endif // WIN64EXCEPTIONS

Expand Down