about summary refs log tree commit diff
path: root/library/panic_unwind/src
diff options
context:
space:
mode:
authorAmanieu d'Antras <amanieu@gmail.com>2022-02-09 14:00:43 +0000
committerAmanieu d'Antras <amanieu@gmail.com>2022-08-23 11:14:40 +0800
commitdb94dbc597ac91cd5d16e898fa9081c09c879123 (patch)
tree6699054d891dc14f42fd932e0296e55055f3cfbf /library/panic_unwind/src
parent8818b00b634ee48e7617d9beb48c4d7bc6967f06 (diff)
downloadrust-db94dbc597ac91cd5d16e898fa9081c09c879123.tar.gz
rust-db94dbc597ac91cd5d16e898fa9081c09c879123.zip
Fix comment on the SEH personality function
Diffstat (limited to 'library/panic_unwind/src')
-rw-r--r--library/panic_unwind/src/seh.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/panic_unwind/src/seh.rs b/library/panic_unwind/src/seh.rs
index 9f1eb411ff6..aa7096b1157 100644
--- a/library/panic_unwind/src/seh.rs
+++ b/library/panic_unwind/src/seh.rs
@@ -325,8 +325,8 @@ pub unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send> {
 }
 
 // This is required by the compiler to exist (e.g., it's a lang item), but
-// it's never actually called by the compiler because __C_specific_handler
-// or _except_handler3 is the personality function that is always used.
+// it's never actually called by the compiler because _CxxFrameHandler3
+// is the personality function that is always used.
 // Hence this is just an aborting stub.
 #[lang = "eh_personality"]
 #[cfg(not(test))]