Skip to content

Rollup of 10 pull requests #141228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
84bb0f0
std: stop using TLS in signal handler
joboet May 3, 2025
3007433
add a type alias for the pattern bindings stack
dianne May 7, 2025
30a0ac6
delay introducing pattern bindings into scope
dianne May 7, 2025
ba80d82
Return value of coroutine_layout fn changed to Result with LayoutError
azhogin May 11, 2025
49553be
Experimental cygwin support in rustc
Berrysoft Apr 22, 2025
12fda86
Fix exe() to make rustc wrapper happy
Berrysoft May 9, 2025
5e048e0
Simplify current_dll_path for Cygwin
Berrysoft May 16, 2025
12c8fb8
Fix fname for miri
Berrysoft May 16, 2025
2cdbd69
disable the stack overflow handler on miri
joboet May 5, 2025
9cacafd
compiler & tools: bump windows crate to dedupe versions
klensy May 17, 2025
40940e1
bootstrap: bump windows too
klensy May 17, 2025
cd22c1b
determine later whether an explicit reg was used
folkertdev Apr 29, 2025
5af9652
extract operand parser
folkertdev Apr 29, 2025
f43b4ff
float: Add `f16` parsing and printing
tgross35 Aug 25, 2024
baff820
float: Add tests for `f16` conversions to and from decimal
tgross35 Mar 8, 2025
1c38c28
float: Add `f16` to `test-float-parse`
tgross35 Aug 25, 2024
4320e6f
Preparing for merge from rustc
May 18, 2025
789d1a4
Merge from rustc
May 18, 2025
84506c6
fmt
May 18, 2025
cf7cade
Stabilize `avx512_target_feature`
sayantn Apr 16, 2025
2898680
Remove uses of `#[feature(avx512_target_feature)]`
sayantn Apr 16, 2025
48093fd
attempt to make doctests work properly with old and new cargo
RalfJung May 18, 2025
0abf62f
Merge pull request #4327 from rust-lang/rustup-2025-05-18
RalfJung May 18, 2025
de8e305
a new parser generating the exact same error messages
folkertdev Apr 29, 2025
7ec06fc
attempt to have rustfmt use the new logic
folkertdev Apr 29, 2025
e12d675
delay error for unsupported options
folkertdev Apr 29, 2025
85053d1
rename to get rid of the 'raw' concept
folkertdev May 17, 2025
26e3a50
add `AsmOptions` with some named fields
folkertdev May 17, 2025
d2e5a3d
gvn: avoid creating overlapping assignments
dianqk May 18, 2025
f0b8ec1
name resolution for guard patterns
dianne May 7, 2025
6a1f6b9
Rollup merge of #127013 - tgross35:f16-format-parse, r=Mark-Simulacrum
fmease May 18, 2025
6d4754f
Rollup merge of #138940 - sayantn:stabilize-avx512, r=Amanieu,travisc…
fmease May 18, 2025
47047c7
Rollup merge of #140154 - Berrysoft:cygwin-host, r=jieyouxu
fmease May 18, 2025
ad3ac84
Rollup merge of #140490 - folkertdev:asm-parser-changes, r=Amanieu,tr…
fmease May 18, 2025
14da1fc
Rollup merge of #140628 - joboet:async_signal_safe, r=Mark-Simulacrum
fmease May 18, 2025
5dafa46
Rollup merge of #140746 - dianne:guard-pat-res, r=oli-obk
fmease May 18, 2025
65bd518
Rollup merge of #140926 - azhogin:azhogin/async-drop-coroutine-layout…
fmease May 18, 2025
6249eed
Rollup merge of #141127 - klensy:windows-bump-61, r=albertlarsan68,ji…
fmease May 18, 2025
edc61d8
Rollup merge of #141214 - RalfJung:miri-sync, r=RalfJung
fmease May 18, 2025
383aef0
Rollup merge of #141218 - dianqk:gvn-overlapping, r=oli-obk
fmease May 18, 2025
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
71 changes: 14 additions & 57 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ dependencies = [
"tracing-subscriber",
"unified-diff",
"walkdir",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -1587,7 +1587,7 @@ dependencies = [
"js-sys",
"log",
"wasm-bindgen",
"windows-core 0.61.0",
"windows-core",
]

[[package]]
Expand Down Expand Up @@ -3493,7 +3493,7 @@ dependencies = [
"thorin-dwp",
"tracing",
"wasm-encoder 0.219.2",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -3552,7 +3552,7 @@ dependencies = [
"tempfile",
"thin-vec",
"tracing",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -3615,7 +3615,7 @@ dependencies = [
"shlex",
"stable_mir",
"tracing",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -3670,7 +3670,7 @@ dependencies = [
"termcolor",
"termize",
"tracing",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -4415,7 +4415,7 @@ dependencies = [
"smallvec",
"termize",
"tracing",
"windows 0.59.0",
"windows",
]

[[package]]
Expand Down Expand Up @@ -5102,7 +5102,7 @@ dependencies = [
"libc",
"objc2-core-foundation",
"objc2-io-kit",
"windows 0.61.1",
"windows",
]

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

[[package]]
name = "windows"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
dependencies = [
"windows-core 0.59.0",
"windows-targets 0.53.0",
]

[[package]]
name = "windows"
version = "0.61.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419"
dependencies = [
"windows-collections",
"windows-core 0.61.0",
"windows-core",
"windows-future",
"windows-link",
"windows-numerics",
Expand All @@ -6042,20 +6032,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
dependencies = [
"windows-core 0.61.0",
]

[[package]]
name = "windows-core"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
dependencies = [
"windows-implement 0.59.0",
"windows-interface",
"windows-result",
"windows-strings 0.3.1",
"windows-targets 0.53.0",
"windows-core",
]

[[package]]
Expand All @@ -6064,11 +6041,11 @@ version = "0.61.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
dependencies = [
"windows-implement 0.60.0",
"windows-implement",
"windows-interface",
"windows-link",
"windows-result",
"windows-strings 0.4.0",
"windows-strings",
]

[[package]]
Expand All @@ -6077,21 +6054,10 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32"
dependencies = [
"windows-core 0.61.0",
"windows-core",
"windows-link",
]

[[package]]
name = "windows-implement"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.101",
]

[[package]]
name = "windows-implement"
version = "0.60.0"
Expand Down Expand Up @@ -6126,7 +6092,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
dependencies = [
"windows-core 0.61.0",
"windows-core",
"windows-link",
]

Expand All @@ -6139,15 +6105,6 @@ dependencies = [
"windows-link",
]

[[package]]
name = "windows-strings"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
dependencies = [
"windows-link",
]

[[package]]
name = "windows-strings"
version = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_ast/src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ impl Pat {
/// Walk top-down and call `it` in each place where a pattern occurs
/// starting with the root pattern `walk` is called on. If `it` returns
/// false then we will descend no further but siblings will be processed.
pub fn walk(&self, it: &mut impl FnMut(&Pat) -> bool) {
pub fn walk<'ast>(&'ast self, it: &mut impl FnMut(&'ast Pat) -> bool) {
if !it(self) {
return;
}
Expand Down
Loading
Loading