Skip to content

Commit 6ce8c71

Browse files
committed
[rebase] Add SEH personality stubs (unused)
1 parent 2fb70e2 commit 6ce8c71

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/libstd/rt/unwind/seh.rs

+7
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,10 @@ pub unsafe fn panic(_data: Box<Any + Send + 'static>) -> ! {
1919
pub unsafe fn cleanup(_ptr: *mut c_void) -> Box<Any + Send + 'static> {
2020
intrinsics::abort();
2121
}
22+
23+
#[lang = "eh_personality"]
24+
#[no_mangle]
25+
pub extern fn rust_eh_personality() {}
26+
27+
#[no_mangle]
28+
pub extern fn rust_eh_personality_catch() {}

0 commit comments

Comments
 (0)