Skip to content
Merged

Rustup #7604

Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8e563b5
Bless clippy tests.
m-ou-se Aug 12, 2021
1ad5464
Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyup
flip1995 Aug 12, 2021
fd5427b
Rollup merge of #87885 - m-ou-se:edition-guide-links, r=rylev
GuillaumeGomez Aug 12, 2021
456e48f
Auto merge of #87954 - flip1995:clippyup, r=Manishearth
bors Aug 13, 2021
80bff87
move Constness into TraitPredicate
fee1-dead Jul 22, 2021
b97d4c0
Introduce hir::ExprKind::Let - Take 2
c410-f3r Aug 8, 2021
295225b
Uplift the `invalid_atomic_ordering` lint from clippy to rustc
thomcc Dec 2, 2020
d9c3f0d
Auto merge of #84039 - jyn514:uplift-atomic-ordering, r=wesleywiser
bors Aug 16, 2021
d5e51db
clippy: Fix format_args expansion parsing
camsteffen Jul 16, 2021
4123fed
remove box_syntax uses from cranelift and tools
hellow554 Aug 6, 2021
ae02282
Fix clippy let expressions fallout
camsteffen Aug 19, 2021
5fec618
introduce a Coerce predicate
nikomatsakis Nov 21, 2020
cd4bf7f
cleanup: `Span::new` -> `Span::with_lo`
petrochenkov Aug 21, 2021
e5fe462
Auto merge of #88163 - camsteffen:collapsible-match-fix, r=Manishearth
bors Aug 22, 2021
c860718
Fix typos “a”→“an”
steffahn Aug 22, 2021
21da42c
Fix more “a”/“an” typos
steffahn Aug 22, 2021
8b6529e
Fix typos “an”→“a” and a few different ones that appeared in the same…
steffahn Aug 22, 2021
5868e28
Rollup merge of #88211 - petrochenkov:withhilo, r=jyn514
GuillaumeGomez Aug 22, 2021
4c847c0
Rollup merge of #88230 - steffahn:a_an, r=oli-obk
m-ou-se Aug 23, 2021
72df99a
Auto merge of #83302 - camsteffen:write-piece-unchecked, r=dtolnay
bors Aug 23, 2021
4d627fc
require a `tcx` for `TypeVisitor`
lcnr Mar 13, 2021
19d1fe2
make unevaluated const substs optional
lcnr Mar 15, 2021
b1786f6
add `tcx` to `fn walk`
lcnr Jul 17, 2021
afd892a
update `TypeFlags` to deal with missing ct substs
lcnr Jul 17, 2021
8c4056f
Treat macros as HIR items
inquisitivecrystal Jul 31, 2021
c8262ad
Teach tools that macros are now HIR items
inquisitivecrystal Aug 5, 2021
0b526fd
rename const_evaluatable_checked to generic_const_exprs
BoxyUwU Aug 25, 2021
fd8b150
`feature(const_generics)` -> `feature(const_param_types)`
lcnr Aug 27, 2021
78bf4ac
Fix clippy for let-else
camsteffen Jul 25, 2021
61bb967
Merge remote-tracking branch 'upstream/master' into rustup2
flip1995 Sep 2, 2021
5722a7d
Fix manual_match with let-expressions
camsteffen Aug 26, 2021
588367b
Fix dogfood
camsteffen Aug 26, 2021
c7c2036
Fix remaining dogfood errors
flip1995 Aug 26, 2021
c2bb313
Add higher docs and remove some unneeded fields
camsteffen Aug 27, 2021
8bf2940
Fix matadata collection configuration formatting
xFrednet Aug 28, 2021
fb6839d
Bump nightly version -> 2021-09-02
flip1995 Sep 2, 2021
01b17af
Fix fallout from re-applying patches
flip1995 Sep 2, 2021
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
230 changes: 0 additions & 230 deletions clippy_lints/src/atomic_ordering.rs

This file was deleted.

6 changes: 1 addition & 5 deletions clippy_lints/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ mod asm_syntax;
mod assertions_on_constants;
mod assign_ops;
mod async_yields_async;
mod atomic_ordering;
mod attrs;
mod await_holding_invalid;
mod bit_mask;
Expand Down Expand Up @@ -537,7 +536,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
assign_ops::ASSIGN_OP_PATTERN,
assign_ops::MISREFACTORED_ASSIGN_OP,
async_yields_async::ASYNC_YIELDS_ASYNC,
atomic_ordering::INVALID_ATOMIC_ORDERING,
attrs::BLANKET_CLIPPY_RESTRICTION_LINTS,
attrs::DEPRECATED_CFG_ATTR,
attrs::DEPRECATED_SEMVER,
Expand Down Expand Up @@ -1175,7 +1173,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
LintId::of(assign_ops::ASSIGN_OP_PATTERN),
LintId::of(assign_ops::MISREFACTORED_ASSIGN_OP),
LintId::of(async_yields_async::ASYNC_YIELDS_ASYNC),
LintId::of(atomic_ordering::INVALID_ATOMIC_ORDERING),
LintId::of(attrs::BLANKET_CLIPPY_RESTRICTION_LINTS),
LintId::of(attrs::DEPRECATED_CFG_ATTR),
LintId::of(attrs::DEPRECATED_SEMVER),
Expand Down Expand Up @@ -1673,7 +1670,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
LintId::of(absurd_extreme_comparisons::ABSURD_EXTREME_COMPARISONS),
LintId::of(approx_const::APPROX_CONSTANT),
LintId::of(async_yields_async::ASYNC_YIELDS_ASYNC),
LintId::of(atomic_ordering::INVALID_ATOMIC_ORDERING),
LintId::of(attrs::DEPRECATED_SEMVER),
LintId::of(attrs::MISMATCHED_TARGET_OS),
LintId::of(attrs::USELESS_ATTRIBUTE),
Expand Down Expand Up @@ -2047,7 +2043,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
store.register_late_pass(|| box floating_point_arithmetic::FloatingPointArithmetic);
store.register_early_pass(|| box as_conversions::AsConversions);
store.register_late_pass(|| box let_underscore::LetUnderscore);
store.register_late_pass(|| box atomic_ordering::AtomicOrdering);
store.register_early_pass(|| box single_component_path_imports::SingleComponentPathImports);
let max_fn_params_bools = conf.max_fn_params_bools;
let max_struct_bools = conf.max_struct_bools;
Expand Down Expand Up @@ -2186,6 +2181,7 @@ pub fn register_renamed(ls: &mut rustc_lint::LintStore) {
ls.register_renamed("clippy::temporary_cstring_as_ptr", "temporary_cstring_as_ptr");
ls.register_renamed("clippy::panic_params", "non_fmt_panics");
ls.register_renamed("clippy::unknown_clippy_lints", "unknown_lints");
ls.register_renamed("clippy::invalid_atomic_ordering", "invalid_atomic_ordering");
}

// only exists to let the dogfood integration test works.
Expand Down
25 changes: 0 additions & 25 deletions tests/ui/atomic_ordering_bool.rs

This file was deleted.

35 changes: 0 additions & 35 deletions tests/ui/atomic_ordering_bool.stderr

This file was deleted.

45 changes: 0 additions & 45 deletions tests/ui/atomic_ordering_exchange.rs

This file was deleted.

Loading