]> git.lizzy.rs Git - rust.git/blobdiff - src/libunwind/libunwind.rs
Rollup merge of #67775 - mental32:master, r=Dylan-DPC
[rust.git] / src / libunwind / libunwind.rs
index c03b6bf416cbf0cd3638b271f99df0ddc2555cf7..087bbb4beb59c8b586c02b4906877bc413ba9607 100644 (file)
@@ -23,6 +23,7 @@ pub enum _Unwind_Reason_Code {
 pub type _Unwind_Ptr = uintptr_t;
 pub type _Unwind_Trace_Fn =
     extern "C" fn(ctx: *mut _Unwind_Context, arg: *mut c_void) -> _Unwind_Reason_Code;
+
 #[cfg(target_arch = "x86")]
 pub const unwinder_private_data_size: usize = 5;
 
@@ -152,6 +153,7 @@ enum _Unwind_VRS_DataRepresentation {
     use _Unwind_VRS_DataRepresentation::*;
 
     pub const UNWIND_POINTER_REG: c_int = 12;
+    pub const UNWIND_SP_REG: c_int = 13;
     pub const UNWIND_IP_REG: c_int = 15;
 
     #[cfg_attr(all(feature = "llvm-libunwind",