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

Remove mentions of Rotor from codebase #20298

Merged
merged 16 commits into from
Oct 9, 2018
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
Prev Previous commit
Next Next commit
Remove dead code in excep.cpp.
This entire function is surrounded with "ifndef FEATURE_PAL".
  • Loading branch information
AustinWise committed Oct 8, 2018
commit e83c7f276a9cc43ed2236c07f9a2fc2ca73ac32c
4 changes: 0 additions & 4 deletions src/vm/excep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,6 @@ LONG WINAPI CLRVectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
}
#endif // defined(WIN64EXCEPTIONS) && defined(FEATURE_HIJACK)

#ifndef FEATURE_PAL
if (IsSOExceptionCode(pExceptionInfo->ExceptionRecord->ExceptionCode))
{
//
Expand Down Expand Up @@ -7475,9 +7474,6 @@ LONG WINAPI CLRVectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
//END_ENTRYPOINT_VOIDRET;
//
return retVal;
#else // !FEATURE_PAL
return CLRVectoredExceptionHandlerPhase2(pExceptionInfo);
#endif // !FEATURE_PAL
}

LONG WINAPI CLRVectoredExceptionHandlerPhase2(PEXCEPTION_POINTERS pExceptionInfo)
Expand Down