Skip to content

Commit 53f7119

Browse files
committed
Auto merge of rust-lang#141228 - fmease:rollup-yqpyhpz, r=fmease
Rollup of 10 pull requests Successful merges: - rust-lang#127013 (Add `f16` formatting and parsing) - rust-lang#138940 (Stabilize the avx512 target features) - rust-lang#140154 (Cygwin support in rustc) - rust-lang#140490 (split `asm!` parsing and validation) - rust-lang#140628 (std: stop using TLS in signal handler) - rust-lang#140746 (name resolution for guard patterns) - rust-lang#140926 (Return value of coroutine_layout fn changed to Result with LayoutError) - rust-lang#141127 (bump windows crate for compiler,bootstrap and tools) - rust-lang#141214 (Miri subtree update) - rust-lang#141218 (gvn: avoid creating overlapping assignments) r? `@ghost` `@rustbot` modify labels: rollup
2 parents b53e5c9 + 383aef0 commit 53f7119

File tree

82 files changed

+1727
-717
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1727
-717
lines changed

Cargo.lock

+14-57
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ dependencies = [
738738
"tracing-subscriber",
739739
"unified-diff",
740740
"walkdir",
741-
"windows 0.59.0",
741+
"windows",
742742
]
743743

744744
[[package]]
@@ -1587,7 +1587,7 @@ dependencies = [
15871587
"js-sys",
15881588
"log",
15891589
"wasm-bindgen",
1590-
"windows-core 0.61.0",
1590+
"windows-core",
15911591
]
15921592

15931593
[[package]]
@@ -3493,7 +3493,7 @@ dependencies = [
34933493
"thorin-dwp",
34943494
"tracing",
34953495
"wasm-encoder 0.219.2",
3496-
"windows 0.59.0",
3496+
"windows",
34973497
]
34983498

34993499
[[package]]
@@ -3552,7 +3552,7 @@ dependencies = [
35523552
"tempfile",
35533553
"thin-vec",
35543554
"tracing",
3555-
"windows 0.59.0",
3555+
"windows",
35563556
]
35573557

35583558
[[package]]
@@ -3615,7 +3615,7 @@ dependencies = [
36153615
"shlex",
36163616
"stable_mir",
36173617
"tracing",
3618-
"windows 0.59.0",
3618+
"windows",
36193619
]
36203620

36213621
[[package]]
@@ -3670,7 +3670,7 @@ dependencies = [
36703670
"termcolor",
36713671
"termize",
36723672
"tracing",
3673-
"windows 0.59.0",
3673+
"windows",
36743674
]
36753675

36763676
[[package]]
@@ -4415,7 +4415,7 @@ dependencies = [
44154415
"smallvec",
44164416
"termize",
44174417
"tracing",
4418-
"windows 0.59.0",
4418+
"windows",
44194419
]
44204420

44214421
[[package]]
@@ -5102,7 +5102,7 @@ dependencies = [
51025102
"libc",
51035103
"objc2-core-foundation",
51045104
"objc2-io-kit",
5105-
"windows 0.61.1",
5105+
"windows",
51065106
]
51075107

51085108
[[package]]
@@ -6002,24 +6002,14 @@ version = "0.4.0"
60026002
source = "registry+https://github.com/rust-lang/crates.io-index"
60036003
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
60046004

6005-
[[package]]
6006-
name = "windows"
6007-
version = "0.59.0"
6008-
source = "registry+https://github.com/rust-lang/crates.io-index"
6009-
checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
6010-
dependencies = [
6011-
"windows-core 0.59.0",
6012-
"windows-targets 0.53.0",
6013-
]
6014-
60156005
[[package]]
60166006
name = "windows"
60176007
version = "0.61.1"
60186008
source = "registry+https://github.com/rust-lang/crates.io-index"
60196009
checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419"
60206010
dependencies = [
60216011
"windows-collections",
6022-
"windows-core 0.61.0",
6012+
"windows-core",
60236013
"windows-future",
60246014
"windows-link",
60256015
"windows-numerics",
@@ -6042,20 +6032,7 @@ version = "0.2.0"
60426032
source = "registry+https://github.com/rust-lang/crates.io-index"
60436033
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
60446034
dependencies = [
6045-
"windows-core 0.61.0",
6046-
]
6047-
6048-
[[package]]
6049-
name = "windows-core"
6050-
version = "0.59.0"
6051-
source = "registry+https://github.com/rust-lang/crates.io-index"
6052-
checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
6053-
dependencies = [
6054-
"windows-implement 0.59.0",
6055-
"windows-interface",
6056-
"windows-result",
6057-
"windows-strings 0.3.1",
6058-
"windows-targets 0.53.0",
6035+
"windows-core",
60596036
]
60606037

60616038
[[package]]
@@ -6064,11 +6041,11 @@ version = "0.61.0"
60646041
source = "registry+https://github.com/rust-lang/crates.io-index"
60656042
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
60666043
dependencies = [
6067-
"windows-implement 0.60.0",
6044+
"windows-implement",
60686045
"windows-interface",
60696046
"windows-link",
60706047
"windows-result",
6071-
"windows-strings 0.4.0",
6048+
"windows-strings",
60726049
]
60736050

60746051
[[package]]
@@ -6077,21 +6054,10 @@ version = "0.2.0"
60776054
source = "registry+https://github.com/rust-lang/crates.io-index"
60786055
checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32"
60796056
dependencies = [
6080-
"windows-core 0.61.0",
6057+
"windows-core",
60816058
"windows-link",
60826059
]
60836060

6084-
[[package]]
6085-
name = "windows-implement"
6086-
version = "0.59.0"
6087-
source = "registry+https://github.com/rust-lang/crates.io-index"
6088-
checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
6089-
dependencies = [
6090-
"proc-macro2",
6091-
"quote",
6092-
"syn 2.0.101",
6093-
]
6094-
60956061
[[package]]
60966062
name = "windows-implement"
60976063
version = "0.60.0"
@@ -6126,7 +6092,7 @@ version = "0.2.0"
61266092
source = "registry+https://github.com/rust-lang/crates.io-index"
61276093
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
61286094
dependencies = [
6129-
"windows-core 0.61.0",
6095+
"windows-core",
61306096
"windows-link",
61316097
]
61326098

@@ -6139,15 +6105,6 @@ dependencies = [
61396105
"windows-link",
61406106
]
61416107

6142-
[[package]]
6143-
name = "windows-strings"
6144-
version = "0.3.1"
6145-
source = "registry+https://github.com/rust-lang/crates.io-index"
6146-
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
6147-
dependencies = [
6148-
"windows-link",
6149-
]
6150-
61516108
[[package]]
61526109
name = "windows-strings"
61536110
version = "0.4.0"

compiler/rustc_ast/src/ast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ impl Pat {
610610
/// Walk top-down and call `it` in each place where a pattern occurs
611611
/// starting with the root pattern `walk` is called on. If `it` returns
612612
/// false then we will descend no further but siblings will be processed.
613-
pub fn walk(&self, it: &mut impl FnMut(&Pat) -> bool) {
613+
pub fn walk<'ast>(&'ast self, it: &mut impl FnMut(&'ast Pat) -> bool) {
614614
if !it(self) {
615615
return;
616616
}

0 commit comments

Comments
 (0)