mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
24 lines
759 B
Rust
24 lines
759 B
Rust
use clippy_utils::diagnostics::span_lint_and_then;
|
|
use rustc_hir as hir;
|
|
use rustc_lint::LateContext;
|
|
|
|
use super::INTEGER_DIVISION;
|
|
|
|
pub(crate) fn check<'tcx>(
|
|
cx: &LateContext<'tcx>,
|
|
expr: &'tcx hir::Expr<'_>,
|
|
op: hir::BinOpKind,
|
|
left: &'tcx hir::Expr<'_>,
|
|
right: &'tcx hir::Expr<'_>,
|
|
) {
|
|
if op == hir::BinOpKind::Div
|
|
&& cx.typeck_results().expr_ty(left).is_integral()
|
|
&& cx.typeck_results().expr_ty(right).is_integral()
|
|
{
|
|
#[expect(clippy::collapsible_span_lint_calls, reason = "rust-clippy#7797")]
|
|
span_lint_and_then(cx, INTEGER_DIVISION, expr.span, "integer division", |diag| {
|
|
diag.help("division of integers may cause loss of precision. consider using floats");
|
|
});
|
|
}
|
|
}
|