Skip to content

Commit

Permalink
Auto merge of rust-lang#6382 - giraffate:fix_fp_in_manual_range_conta…
Browse files Browse the repository at this point in the history
…ins_when_const_fn, r=llogiq

Fix FP of `manual_range_contains` in `const fn`

Fix rust-lang#6373.

changelog: Fix FP of `manual_range_contains` in `const fn`
  • Loading branch information
bors committed Dec 12, 2020
2 parents 18c5ea4 + 26c61c7 commit 3b89a67
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
11 changes: 8 additions & 3 deletions clippy_lints/src/ranges.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use std::cmp::Ordering;

use crate::utils::sugg::Sugg;
use crate::utils::{
get_parent_expr, is_integer_const, meets_msrv, single_segment_path, snippet, snippet_opt,
get_parent_expr, in_constant, is_integer_const, meets_msrv, single_segment_path, snippet, snippet_opt,
snippet_with_applicability, span_lint, span_lint_and_sugg, span_lint_and_then,
};
use crate::utils::{higher, SpanlessEq};
Expand Down Expand Up @@ -190,7 +190,7 @@ impl<'tcx> LateLintPass<'tcx> for Ranges {
},
ExprKind::Binary(ref op, ref l, ref r) => {
if meets_msrv(self.msrv.as_ref(), &MANUAL_RANGE_CONTAINS_MSRV) {
check_possible_range_contains(cx, op.node, l, r, expr.span);
check_possible_range_contains(cx, op.node, l, r, expr);
}
},
_ => {},
Expand All @@ -203,7 +203,12 @@ impl<'tcx> LateLintPass<'tcx> for Ranges {
extract_msrv_attr!(LateContext);
}

fn check_possible_range_contains(cx: &LateContext<'_>, op: BinOpKind, l: &Expr<'_>, r: &Expr<'_>, span: Span) {
fn check_possible_range_contains(cx: &LateContext<'_>, op: BinOpKind, l: &Expr<'_>, r: &Expr<'_>, expr: &Expr<'_>) {
if in_constant(cx, expr.hir_id) {
return;
}

let span = expr.span;
let combine_and = match op {
BinOpKind::And | BinOpKind::BitAnd => true,
BinOpKind::Or | BinOpKind::BitOr => false,
Expand Down
5 changes: 5 additions & 0 deletions tests/ui/range_contains.fixed
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ fn main() {
(0. ..1.).contains(&y);
!(0. ..=1.).contains(&y);
}

// Fix #6373
pub const fn in_range(a: i32) -> bool {
3 <= a && a <= 20
}
5 changes: 5 additions & 0 deletions tests/ui/range_contains.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ fn main() {
y >= 0. && y < 1.;
y < 0. || y > 1.;
}

// Fix #6373
pub const fn in_range(a: i32) -> bool {
3 <= a && a <= 20
}

0 comments on commit 3b89a67

Please sign in to comment.