Differences From Artifact [a631c06b73]:
- File src/runtime/exception.m — part of check-in [8b0ab1157c] at 2024-04-24 22:39:00 on branch trunk — Simplify detection of exception type (user: js, size: 19956) [annotate] [blame] [check-ins using] [more...]
To Artifact [98da1df5a9]:
- File
src/runtime/exception.m
— part of check-in
[fa0f45f5f8]
at
2024-11-02 23:32:40
on branch trunk
— Fix minor space errors and typos
Found during review of the diff between last and current release. (user: js, size: 19955) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
34 35 36 37 38 39 40 | #endif #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) | | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #endif #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) # define PERSONALITY gnu_objc_personality #elif defined(__USING_SJLJ_EXCEPTIONS__) # define PERSONALITY __gnu_objc_personality_sj0 # define CXX_PERSONALITY_STR "__gxx_personality_sj0" # define _Unwind_RaiseException _Unwind_SjLj_RaiseException # define __builtin_eh_return_data_regno(i) (i) #else # define PERSONALITY __gnu_objc_personality_v0 |
︙ | ︙ |