builtins-test: Remove no_mangle from eh_personality

Rustc now mangles these symbols on its own, so `no_mangle` is rejected
as an error.
This commit is contained in:
Trevor Gross 2025-05-01 18:52:12 +00:00 committed by Trevor Gross
parent caf337d467
commit 4c2659f9ce

View file

@ -682,7 +682,6 @@ pub fn _Unwind_Resume() {}
#[cfg(not(any(windows, target_os = "cygwin")))]
#[lang = "eh_personality"]
#[unsafe(no_mangle)]
pub extern "C" fn eh_personality() {}
#[cfg(any(all(windows, target_env = "gnu"), target_os = "cygwin"))]