Remove unneeded assumption.

This commit is contained in:
Markus Reiter 2024-05-17 21:55:45 +02:00
parent 45b87fb401
commit 832ccdc8df
No known key found for this signature in database
GPG Key ID: 245293B51702655B

View File

@ -327,7 +327,6 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
(Float(_), Int(_, is_signed)) => bx.cast_float_to_int(is_signed, imm, to_backend_ty),
_ => return None,
};
self.assume_scalar_range(bx, imm, to_scalar, to_backend_ty);
Some(imm)
}