Skip to content

Commit

Permalink
Fix accidentally inverted preprocessor directive.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchisnall committed Apr 26, 2019
1 parent 2d6c6f7 commit 32a7f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eh_personality.c
Expand Up @@ -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)
{
Expand Down

0 comments on commit 32a7f60

Please sign in to comment.