1
Fork 0

Make name more explicit.

This commit is contained in:
Camille GILLOT 2023-02-11 17:29:12 +00:00
parent 4f13aa7f46
commit e9c73ea502

View file

@ -566,12 +566,12 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
// another crate (mostly core::num generic/#[inline] fns), // another crate (mostly core::num generic/#[inline] fns),
// while the current crate doesn't use overflow checks. // while the current crate doesn't use overflow checks.
if !bx.cx().check_overflow() { if !bx.cx().check_overflow() {
let unchecked_overflow = match msg { let overflow_not_to_check = match msg {
AssertKind::OverflowNeg(..) => true, AssertKind::OverflowNeg(..) => true,
AssertKind::Overflow(op, ..) => op.is_checkable(), AssertKind::Overflow(op, ..) => op.is_checkable(),
_ => false, _ => false,
}; };
if unchecked_overflow { if overflow_not_to_check {
const_cond = Some(expected); const_cond = Some(expected);
} }
} }