File tree 5 files changed +10
-4
lines changed
5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -129,12 +129,16 @@ cfg_if! {
129
129
// [0]: https://github.com/rust-lang/rust/issues/54341
130
130
131
131
/// C `__int128` (a GCC extension that's part of many ABIs)
132
+ #[ deprecated( since = "0.2.172" , note = "Use i128 instead." ) ]
132
133
pub type __int128 = i128 ;
133
134
/// C `unsigned __int128` (a GCC extension that's part of many ABIs)
135
+ #[ deprecated( since = "0.2.172" , note = "Use u128 instead." ) ]
134
136
pub type __uint128 = u128 ;
135
137
/// C __int128_t (alternate name for [__int128][])
138
+ #[ deprecated( since = "0.2.172" , note = "Use i128 instead." ) ]
136
139
pub type __int128_t = i128 ;
137
140
/// C __uint128_t (alternate name for [__uint128][])
141
+ #[ deprecated( since = "0.2.172" , note = "Use u128 instead." ) ]
138
142
pub type __uint128_t = u128 ;
139
143
140
144
// NOTE: if you add more platforms to here, you may need to cfg
@@ -181,8 +185,10 @@ cfg_if! {
181
185
)
182
186
) ) ] {
183
187
/// C `__int128_t`
188
+ #[ deprecated( since = "1.0" , note = "Use i128 instead." ) ]
184
189
pub type __int128_t = i128 ;
185
190
/// C `__uint128_t`
191
+ #[ deprecated( since = "1.0" , note = "Use ux128 instead." ) ]
186
192
pub type __uint128_t = u128 ;
187
193
}
188
194
}
Original file line number Diff line number Diff line change 40
40
}
41
41
42
42
pub struct __darwin_arm_neon_state64 {
43
- pub __v: [ crate :: __uint128_t ; 32 ] ,
43
+ pub __v: [ u128 ; 32 ] ,
44
44
pub __fpsr: u32 ,
45
45
pub __fpcr: u32 ,
46
46
}
Original file line number Diff line number Diff line change 78
78
}
79
79
80
80
pub struct user_fpsimd_struct {
81
- pub vregs: [ crate :: __uint128_t ; 32 ] ,
81
+ pub vregs: [ u128 ; 32 ] ,
82
82
pub fpsr: u32 ,
83
83
pub fpcr: u32 ,
84
84
}
Original file line number Diff line number Diff line change 218
218
}
219
219
220
220
pub struct user_fpsimd_struct {
221
- pub vregs: [ crate :: __uint128_t ; 32 ] ,
221
+ pub vregs: [ u128 ; 32 ] ,
222
222
pub fpsr: c_uint,
223
223
pub fpcr: c_uint,
224
224
}
Original file line number Diff line number Diff line change 105
105
}
106
106
107
107
pub struct user_fpsimd_struct {
108
- pub vregs: [ crate :: __uint128_t ; 32 ] ,
108
+ pub vregs: [ u128 ; 32 ] ,
109
109
pub fpsr: u32 ,
110
110
pub fpcr: u32 ,
111
111
}
You can’t perform that action at this time.
0 commit comments