blob: a0d6876691833e03208ffe9b491561c2569358e7 [file] [log] [blame]
//! Unwinding for unsupported target.
//!
//! Stubs that simply abort for targets that don't support unwinding otherwise.
use alloc::boxed::Box;
use core::any::Any;
use core::intrinsics;
pub(crate) unsafe fn cleanup(_ptr: *mut u8) -> Box<dyn Any + Send> {
intrinsics::abort()
}
pub(crate) unsafe fn panic(_data: Box<dyn Any + Send>) -> u32 {
intrinsics::abort()
}