File tree 2 files changed +4
-14
lines changed
src/unix/linux_like/linux/gnu/b64
2 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -4398,8 +4398,6 @@ fn test_linux(target: &str) {
4398
4398
cfg. skip_roundtrip ( move |s| match s {
4399
4399
// FIXME:
4400
4400
"mcontext_t" if s390x => true ,
4401
- // FIXME: This is actually a union.
4402
- "fpreg_t" if s390x => true ,
4403
4401
4404
4402
// The test doesn't work on some env:
4405
4403
"ipv6_mreq"
Original file line number Diff line number Diff line change @@ -212,33 +212,25 @@ s! {
212
212
}
213
213
214
214
s_no_extra_traits ! {
215
- // FIXME(union): This is actually a union.
216
- pub struct fpreg_t {
215
+ pub union fpreg_t {
217
216
pub d: c_double,
218
- // f: c_float,
217
+ pub f: c_float,
219
218
}
220
219
}
221
220
222
221
cfg_if ! {
223
222
if #[ cfg( feature = "extra_traits" ) ] {
224
223
impl PartialEq for fpreg_t {
225
224
fn eq( & self , other: & fpreg_t) -> bool {
226
- self . d == other . d
225
+ unimplemented! ( "traits" )
227
226
}
228
227
}
229
228
230
229
impl Eq for fpreg_t { }
231
230
232
- impl fmt:: Debug for fpreg_t {
233
- fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
234
- f. debug_struct( "fpreg_t" ) . field( "d" , & self . d) . finish( )
235
- }
236
- }
237
-
238
231
impl hash:: Hash for fpreg_t {
239
232
fn hash<H : hash:: Hasher >( & self , state: & mut H ) {
240
- let d: u64 = unsafe { mem:: transmute( self . d) } ;
241
- d. hash( state) ;
233
+ unimplemented!( "traits" )
242
234
}
243
235
}
244
236
}
You can’t perform that action at this time.
0 commit comments