Auto merge of #133299 - flip1995:clippy-beta-backport, r=Mark-Simulacrum
[beta] Clippy backports r? `@Mark-Simulacrum` Backports: - https://github.com/rust-lang/rust-clippy/pull/13553 - https://github.com/rust-lang/rust-clippy/pull/13600 The first is just a regrouping to a allow-by-default group, as we figured that the lint would be too noisy as a warn-by-default lint. That lint was added last release cycle, so we want to do the re-grouping before it hits stable. The second is a bug fix for `&raw` references that are already stable in `1.82`, but we don't want to wait another release cycle for the fix to land on stable. Both commits are already synced to the current `master branch`.
This commit is contained in:
commit
f9c269546c
4 changed files with 18 additions and 4 deletions
|
@ -4,7 +4,7 @@ use clippy_utils::source::SpanRangeExt;
|
|||
use clippy_utils::ty::implements_trait;
|
||||
use clippy_utils::{get_parent_expr, is_from_proc_macro, is_lint_allowed};
|
||||
use rustc_errors::Applicability;
|
||||
use rustc_hir::{ExprKind, UnOp};
|
||||
use rustc_hir::{BorrowKind, ExprKind, UnOp};
|
||||
use rustc_lint::{LateContext, LateLintPass};
|
||||
use rustc_middle::mir::Mutability;
|
||||
use rustc_middle::ty;
|
||||
|
@ -49,7 +49,7 @@ declare_lint_pass!(BorrowDerefRef => [BORROW_DEREF_REF]);
|
|||
|
||||
impl<'tcx> LateLintPass<'tcx> for BorrowDerefRef {
|
||||
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &rustc_hir::Expr<'tcx>) {
|
||||
if let ExprKind::AddrOf(_, Mutability::Not, addrof_target) = e.kind
|
||||
if let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, addrof_target) = e.kind
|
||||
&& let ExprKind::Unary(UnOp::Deref, deref_target) = addrof_target.kind
|
||||
&& !matches!(deref_target.kind, ExprKind::Unary(UnOp::Deref, ..))
|
||||
&& !e.span.from_expansion()
|
||||
|
|
|
@ -11,10 +11,12 @@ use rustc_session::declare_lint_pass;
|
|||
|
||||
declare_clippy_lint! {
|
||||
/// ### What it does
|
||||
/// Checks for expressions like `x.count_ones() == 1` or `x & (x - 1) == 0`, with x and unsigned integer, which are manual
|
||||
/// Checks for expressions like `x.count_ones() == 1` or `x & (x - 1) == 0`, with x and unsigned integer, which may be manual
|
||||
/// reimplementations of `x.is_power_of_two()`.
|
||||
///
|
||||
/// ### Why is this bad?
|
||||
/// Manual reimplementations of `is_power_of_two` increase code complexity for little benefit.
|
||||
///
|
||||
/// ### Example
|
||||
/// ```no_run
|
||||
/// let a: u32 = 4;
|
||||
|
@ -27,7 +29,7 @@ declare_clippy_lint! {
|
|||
/// ```
|
||||
#[clippy::version = "1.82.0"]
|
||||
pub MANUAL_IS_POWER_OF_TWO,
|
||||
complexity,
|
||||
pedantic,
|
||||
"manually reimplementing `is_power_of_two`"
|
||||
}
|
||||
|
||||
|
|
|
@ -71,3 +71,9 @@ mod false_negative {
|
|||
assert_ne!(addr_x, addr_y);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue_13584() {
|
||||
let s = "Hello, world!\n";
|
||||
let p = &raw const *s;
|
||||
let _ = p as *const i8;
|
||||
}
|
||||
|
|
|
@ -71,3 +71,9 @@ mod false_negative {
|
|||
assert_ne!(addr_x, addr_y);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue_13584() {
|
||||
let s = "Hello, world!\n";
|
||||
let p = &raw const *s;
|
||||
let _ = p as *const i8;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue