Fix stage0 ICE caused by the old _Unwind_Resume override trickery.

This commit is contained in:
Vadim Chugunov 2015-10-31 18:47:38 -07:00
parent afc3046515
commit 0332ee9f63

View File

@ -131,6 +131,8 @@ extern "C" {
pub fn _Unwind_DeleteException(exception: *mut _Unwind_Exception);
// remove cfg after new snapshot
#[cfg(not(all(stage0, target_os="windows", target_arch="x86_64")))]
#[unwind]
pub fn _Unwind_Resume(exception: *mut _Unwind_Exception) -> !;
}