Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
assembly
/
auxiliary
/
breakpoint-panic-handler.rs
blob: d54c1181e1a0c64fc87e7f15fb8c7e80a89fe340 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
core_intrinsics
)]
#![
no_std
]
#[
panic_handler
]
unsafe
fn
breakpoint_panic_handler
(
_
:
&::
core
::
panic
::
PanicInfo
)
->
!
{
core
::
intrinsics
::
breakpoint
();
core
::
hint
::
unreachable_unchecked
();
}