Skip to content

Commit 32a7f60

Browse files
committed
Fix accidentally inverted preprocessor directive.
1 parent 2d6c6f7 commit 32a7f60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eh_personality.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ static inline _Unwind_Reason_Code internal_objc_personality(int version,
421421
// On ARM, we occasionally get called to install a handler without
422422
// phase 1 running (no idea why, I suspect a bug in the generic
423423
// unwinder), so skip this check.
424-
#if defined(__arm__) && !defined(__ARM_DWARF_EH__)
424+
#if !(defined(__arm__) && !defined(__ARM_DWARF_EH__))
425425
// If this is not a cleanup, ignore it and keep unwinding.
426426
if ((handler != handler_cleanup) && !objcxxException)
427427
{

0 commit comments

Comments
 (0)