about summary refs log tree commit diff
path: root/library/panic_unwind/src
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-08-22 07:06:38 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2023-08-23 20:05:14 -0400
commit0a916062aac997071d020159bd6f12a57ca3fd2c (patch)
tree331373dfed61b6043ceb2818364a731e63c44f5f /library/panic_unwind/src
parent068e3d97d0f1da0019e6e98dbd151d5e9df548b1 (diff)
Bump cfg(bootstrap)
Diffstat (limited to 'library/panic_unwind/src')
-rw-r--r--library/panic_unwind/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/panic_unwind/src/lib.rs b/library/panic_unwind/src/lib.rs
index 009014de5c2..e7d34daa079 100644
--- a/library/panic_unwind/src/lib.rs
+++ b/library/panic_unwind/src/lib.rs
@@ -19,14 +19,13 @@
 #![feature(panic_unwind)]
 #![feature(staged_api)]
 #![feature(std_internals)]
-#![cfg_attr(bootstrap, feature(abi_thiscall))]
 #![feature(rustc_attrs)]
 #![panic_runtime]
 #![feature(panic_runtime)]
 #![feature(c_unwind)]
 // `real_imp` is unused with Miri, so silence warnings.
 #![cfg_attr(miri, allow(dead_code))]
-#![cfg_attr(not(bootstrap), allow(internal_features))]
+#![allow(internal_features)]
 
 use alloc::boxed::Box;
 use core::any::Any;