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

Commit

Permalink
[x86/Linux] Re-enable FrameHandlerExRecord for x86/Linux (#8409)
Browse files Browse the repository at this point in the history
* Re-enable FrameHandlerExRecord for x86/Linux

* Use _TARGET_X86_ instead of WIN64EXCEPTIONS
  • Loading branch information
parjong authored and janvorli committed Dec 5, 2016
1 parent c7a6492 commit 493132c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/vm/excep.h
Original file line number Diff line number Diff line change
Expand Up @@ -422,10 +422,11 @@ VOID DECLSPEC_NORETURN RealCOMPlusThrowInvalidCastException(TypeHandle thCastFro
VOID DECLSPEC_NORETURN RealCOMPlusThrowInvalidCastException(OBJECTREF *pObj, TypeHandle thCastTo);


#ifdef _TARGET_X86_

#include "eexcp.h"
#include "exinfo.h"

#if defined(_TARGET_X86_) && !defined(FEATURE_PAL)
struct FrameHandlerExRecord
{
EXCEPTION_REGISTRATION_RECORD m_ExReg;
Expand Down Expand Up @@ -460,7 +461,7 @@ struct NestedHandlerExRecord : public FrameHandlerExRecord
}
};

#endif // _TARGET_X86_ && !FEATURE_PAL
#endif // _TARGET_X86_

#if defined(ENABLE_CONTRACTS_IMPL)

Expand Down

0 comments on commit 493132c

Please sign in to comment.