You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// FIXME: Using host floats, to work around https://github.com/rust-lang/miri/issues/2468.
304
+
let a = f32::from_bits(this.read_scalar(a)?.to_u32()?);
305
+
let b = f32::from_bits(this.read_scalar(b)?.to_u32()?);
306
+
let c = f32::from_bits(this.read_scalar(c)?.to_u32()?);
// FIXME: Using host floats, to work around https://github.com/rust-lang/miri/issues/2468.
314
+
let a = f64::from_bits(this.read_scalar(a)?.to_u64()?);
315
+
let b = f64::from_bits(this.read_scalar(b)?.to_u64()?);
316
+
let c = f64::from_bits(this.read_scalar(c)?.to_u64()?);
// FIXME: using host floats to work around https://github.com/rust-lang/miri/issues/2468.
241
242
let ty::Float(float_ty) = dest.layout.ty.kind()else{
242
243
span_bug!(this.cur_span(),"{} operand is not a float", intrinsic_name)
0 commit comments