@@ -21,7 +21,7 @@ pub enum _Unwind_Reason_Code {
21
21
_URC_CONTINUE_UNWIND = 8 ,
22
22
_URC_FAILURE = 9 , // used only by ARM EHABI
23
23
}
24
- pub use self :: _Unwind_Reason_Code:: * ;
24
+ pub use _Unwind_Reason_Code:: * ;
25
25
26
26
pub type _Unwind_Exception_Class = u64 ;
27
27
pub type _Unwind_Word = uintptr_t ;
@@ -94,7 +94,7 @@ if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm
94
94
_UA_FORCE_UNWIND = 8 ,
95
95
_UA_END_OF_STACK = 16 ,
96
96
}
97
- pub use self :: _Unwind_Action:: * ;
97
+ pub use _Unwind_Action:: * ;
98
98
99
99
extern "C" {
100
100
pub fn _Unwind_GetGR( ctx: * mut _Unwind_Context, reg_index: c_int) -> _Unwind_Word;
@@ -118,7 +118,7 @@ if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm
118
118
_US_FORCE_UNWIND = 8 ,
119
119
_US_END_OF_STACK = 16 ,
120
120
}
121
- pub use self :: _Unwind_State:: * ;
121
+ pub use _Unwind_State:: * ;
122
122
123
123
#[ repr( C ) ]
124
124
enum _Unwind_VRS_Result {
@@ -134,7 +134,7 @@ if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm
134
134
_UVRSC_WMMXD = 3 ,
135
135
_UVRSC_WMMXC = 4 ,
136
136
}
137
- use self :: _Unwind_VRS_RegClass:: * ;
137
+ use _Unwind_VRS_RegClass:: * ;
138
138
#[ repr( C ) ]
139
139
enum _Unwind_VRS_DataRepresentation {
140
140
_UVRSD_UINT32 = 0 ,
@@ -144,7 +144,7 @@ if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm
144
144
_UVRSD_FLOAT = 4 ,
145
145
_UVRSD_DOUBLE = 5 ,
146
146
}
147
- use self :: _Unwind_VRS_DataRepresentation:: * ;
147
+ use _Unwind_VRS_DataRepresentation:: * ;
148
148
149
149
pub const UNWIND_POINTER_REG : c_int = 12 ;
150
150
pub const UNWIND_IP_REG : c_int = 15 ;
0 commit comments