From b006dafbef716d4392d52fd35879112ce2fb4d91 Mon Sep 17 00:00:00 2001 From: Charles Davis Date: Wed, 8 Aug 2018 15:18:22 +0000 Subject: [PATCH] Remove unneeded preprocessor condition. llvm-svn: 339259 --- libunwind/include/unwind.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/libunwind/include/unwind.h b/libunwind/include/unwind.h index c24d6ab..05f5a16 100644 --- a/libunwind/include/unwind.h +++ b/libunwind/include/unwind.h @@ -379,20 +379,11 @@ extern void *__deregister_frame_info_bases(const void *fde) #if defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__) // This is the common wrapper for GCC-style personality functions with SEH. -#ifdef __x86_64__ -// The DISPATCHER_CONTEXT struct is only defined on x64. extern EXCEPTION_DISPOSITION _GCC_specific_handler(PEXCEPTION_RECORD exc, PVOID frame, PCONTEXT ctx, PDISPATCHER_CONTEXT disp, _Unwind_Personality_Fn pers); -#else -extern EXCEPTION_DISPOSITION _GCC_specific_handler(PEXCEPTION_RECORD exc, - PVOID frame, - PCONTEXT ctx, - PVOID disp, - _Unwind_Personality_Fn pers); -#endif #endif #ifdef __cplusplus -- 2.7.4