Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions clippy_lints/src/manual_bits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ use rustc_ast::ast::LitKind;
use rustc_data_structures::packed::Pu128;
use rustc_errors::Applicability;
use rustc_hir::{BinOpKind, Expr, ExprKind, GenericArg, QPath};
use rustc_lint::{LateContext, LateLintPass, LintContext};
use rustc_middle::lint::in_external_macro;
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::ty::{self, Ty};
use rustc_session::impl_lint_pass;
use rustc_span::sym;
Expand Down Expand Up @@ -53,7 +52,7 @@ impl<'tcx> LateLintPass<'tcx> for ManualBits {
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
if let ExprKind::Binary(bin_op, left_expr, right_expr) = expr.kind
&& let BinOpKind::Mul = &bin_op.node
&& !in_external_macro(cx.sess(), expr.span)
&& !expr.span.from_expansion()
&& self.msrv.meets(msrvs::MANUAL_BITS)
&& let ctxt = expr.span.ctxt()
&& left_expr.span.ctxt() == ctxt
Expand Down
11 changes: 11 additions & 0 deletions tests/ui/manual_bits.fixed
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ fn main() {
let _ = (u128::BITS as usize).pow(5);
let _ = &(u128::BITS as usize);
}

fn should_not_lint() {
macro_rules! bits_via_macro {
($T: ty) => {
size_of::<$T>() * 8;
};
}

bits_via_macro!(u8);
bits_via_macro!(String);
}
11 changes: 11 additions & 0 deletions tests/ui/manual_bits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ fn main() {
let _ = (size_of::<u128>() * 8).pow(5);
let _ = &(size_of::<u128>() * 8);
}

fn should_not_lint() {
macro_rules! bits_via_macro {
($T: ty) => {
size_of::<$T>() * 8;
};
}

bits_via_macro!(u8);
bits_via_macro!(String);
}