From 32a7f60ee2998460cda31b03dfe8a38c9f07081c Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Sat, 30 Mar 2019 20:16:16 +0000 Subject: [PATCH] Fix accidentally inverted preprocessor directive. --- eh_personality.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eh_personality.c b/eh_personality.c index 0f211972..05aa05c0 100644 --- a/eh_personality.c +++ b/eh_personality.c @@ -421,7 +421,7 @@ static inline _Unwind_Reason_Code internal_objc_personality(int version, // On ARM, we occasionally get called to install a handler without // phase 1 running (no idea why, I suspect a bug in the generic // unwinder), so skip this check. -#if defined(__arm__) && !defined(__ARM_DWARF_EH__) +#if !(defined(__arm__) && !defined(__ARM_DWARF_EH__)) // If this is not a cleanup, ignore it and keep unwinding. if ((handler != handler_cleanup) && !objcxxException) {