mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
Auto merge of #79172 - a1phyr:cold_abort, r=Mark-Simulacrum
Add #[cold] attribute to `std::process::abort` and `alloc::alloc::handle_alloc_error`
This commit is contained in:
commit
f32459c7ba
@ -360,6 +360,7 @@ extern "Rust" {
|
||||
#[stable(feature = "global_alloc", since = "1.28.0")]
|
||||
#[cfg(not(test))]
|
||||
#[rustc_allocator_nounwind]
|
||||
#[cold]
|
||||
pub fn handle_alloc_error(layout: Layout) -> ! {
|
||||
unsafe {
|
||||
__rust_alloc_error_handler(layout.size(), layout.align());
|
||||
|
@ -1779,6 +1779,7 @@ pub fn exit(code: i32) -> ! {
|
||||
///
|
||||
/// [panic hook]: crate::panic::set_hook
|
||||
#[stable(feature = "process_abort", since = "1.17.0")]
|
||||
#[cold]
|
||||
pub fn abort() -> ! {
|
||||
crate::sys::abort_internal();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user