Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions sources/lib/run-time/llvm-exceptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,8 @@ kern_return_t catch_mach_exception_raise_state_identity
memcpy(&uc, ts, sizeof(uintptr_t) * 18);
#elif defined OPEN_DYLAN_ARCH_AARCH64
arm_thread_state64_t *ts = (arm_thread_state64_t *) old_state;
fprintf(stderr, "Unhandled exception: exception=%d code=%lld/%lld\n",
exception, code[0], code[1]);
abort();
// Both of these structures begin with the aarch64 general registers
memcpy(&uc, ts, sizeof *ts);
#else
#error No thread state to unwind context conversion
#endif
Expand Down