We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c110329 commit a54ddd4Copy full SHA for a54ddd4
library/panic_abort/src/lib.rs
@@ -113,7 +113,11 @@ pub unsafe fn __rust_start_panic(_payload: *mut &mut dyn BoxMeUp) -> u32 {
113
// binaries, but it should never be called as we don't link in an unwinding
114
// runtime at all.
115
pub mod personalities {
116
- // Similar to above, this corresponds to the `eh_catch_typeinfo` lang item
+ // In the past this module used to contain stubs for the personality
117
+ // functions of various platforms, but these where removed when personality
118
+ // functions were moved to std.
119
+
120
+ // This corresponds to the `eh_catch_typeinfo` lang item
121
// that's only used on Emscripten currently.
122
//
123
// Since panics don't generate exceptions and foreign exceptions are
0 commit comments