diff options
author | midipix <writeonce@midipix.org> | 2019-03-12 19:11:57 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-03-13 03:36:34 -0400 |
commit | 0aaf3a9ba7bd8bbe094c354148ffe986a01ce529 (patch) | |
tree | 55d46fc571b3315ec1f6b18e5c1f091d6254bacb | |
parent | 955c8d5c35908a4307bc17ecfb8f7b471d806554 (diff) | |
download | cbb-gcc-4.6.4-0aaf3a9ba7bd8bbe094c354148ffe986a01ce529.tar.bz2 cbb-gcc-4.6.4-0aaf3a9ba7bd8bbe094c354148ffe986a01ce529.tar.xz |
libobjc/exception.c: target-provided exception filters: fix ordering typo.
-rw-r--r-- | libobjc/exception.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libobjc/exception.c b/libobjc/exception.c index 239320240..702769eba 100644 --- a/libobjc/exception.c +++ b/libobjc/exception.c @@ -246,9 +246,6 @@ get_ttype_entry (struct lsda_header_info *info, _Unwind_Word i) } \ while (0) -#ifdef TARGET_PERSONALITY_FUNCTION -static -#endif _Unwind_Reason_Code PERSONALITY_FUNCTION (_Unwind_State state, struct _Unwind_Exception *ue_header, @@ -257,6 +254,9 @@ PERSONALITY_FUNCTION (_Unwind_State state, #define CONTINUE_UNWINDING return _URC_CONTINUE_UNWIND +#ifdef TARGET_PERSONALITY_FUNCTION +static +#endif _Unwind_Reason_Code PERSONALITY_FUNCTION (int version, _Unwind_Action actions, |