Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/exception.c

    r190224d r3b9c674  
    7272// Used in the personality function, way down in termination.
    7373// struct _Unwind_Context * -> _Unwind_Reason_Code(*)(exception_t *)
    74 #if defined( __x86_64 )
    7574#define MATCHER_FROM_CONTEXT(ptr_to_context) \
    7675        (*(_Unwind_Reason_Code(**)(exception_t *))(_Unwind_GetCFA(ptr_to_context) + 8))
    77 #elif defined( __i386 )
    78 #define MATCHER_FROM_CONTEXT(ptr_to_context) \
    79         (*(_Unwind_Reason_Code(**)(exception_t *))(_Unwind_GetCFA(ptr_to_context) + 24))
    80 #endif
     76
    8177
    8278// RESUMPTION ================================================================
Note: See TracChangeset for help on using the changeset viewer.