mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
Auto merge of #108796 - devsnek:personality-pal-exception, r=workingjubilee
move personality to sys this moves `personality` to sys, removing another PAL exception
This commit is contained in:
commit
743333f3dd
@ -603,7 +603,6 @@ pub mod alloc;
|
||||
|
||||
// Private support modules
|
||||
mod panicking;
|
||||
mod personality;
|
||||
|
||||
#[path = "../../backtrace/src/lib.rs"]
|
||||
#[allow(dead_code, unused_attributes, fuzzy_provenance_casts)]
|
||||
|
@ -23,6 +23,7 @@
|
||||
#![allow(missing_debug_implementations)]
|
||||
|
||||
pub mod common;
|
||||
mod personality;
|
||||
|
||||
cfg_if::cfg_if! {
|
||||
if #[cfg(unix)] {
|
||||
|
@ -56,8 +56,6 @@ const EXCEPTION_PATHS: &[&str] = &[
|
||||
"library/std/src/path.rs",
|
||||
"library/std/src/sys_common", // Should only contain abstractions over platforms
|
||||
"library/std/src/net/test.rs", // Utility helpers for tests
|
||||
"library/std/src/personality.rs",
|
||||
"library/std/src/personality/",
|
||||
];
|
||||
|
||||
pub fn check(path: &Path, bad: &mut bool) {
|
||||
|
Loading…
Reference in New Issue
Block a user