Skip to content

Rollup of 8 pull requests #141207

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 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
684b7b7
don't depend on rustc_attr_parsing if rustc_data_structures will do
mejrs May 9, 2025
9ccabd5
Make some `f32`/`f64` tests also run in const-context
Urgau May 11, 2025
4a65aaf
Remove rustc_attr_data_structures re-export from rustc_attr_parsing
mejrs May 11, 2025
6128fca
[win][arm64] Remove 'Arm64 Hazard' undocumented MSVC option and inste…
dpaoliello May 15, 2025
8fcff8c
Add per page TOC in the rustc book
Urgau Apr 21, 2025
72f915a
Fix flicker when page loads
Urgau Apr 21, 2025
4cbcb44
Cleanup the Javascript and CSS of our custom TOC
Urgau Apr 21, 2025
84d7edd
Enable [behind-upstream] triagebot option for rust-lang/rust
xizheyin May 16, 2025
1adfdb4
Use `crate::` prefix for root macro suggestions
bvanjoi May 17, 2025
b3b2153
Update triagebot.toml
xizheyin May 17, 2025
65d381b
triagebot: fix Rust for Linux ping group rust-lang/rust label
jieyouxu May 17, 2025
2dddbd1
rustc-dev-guide: fix Rust for Linux rust-lang/rust label
jieyouxu May 17, 2025
cd22c1b
determine later whether an explicit reg was used
folkertdev Apr 29, 2025
5af9652
extract operand parser
folkertdev Apr 29, 2025
614c51a
a new parser generating the exact same error messages
folkertdev Apr 29, 2025
9191373
cleanup `parse_clobber_abi`
folkertdev Apr 29, 2025
d85ea45
cleanup `parse_options`
folkertdev Apr 29, 2025
3ca1a16
cleanup unused code
folkertdev Apr 29, 2025
b6bc513
more cleanup
folkertdev Apr 29, 2025
f457e4d
leave a note about maybe delaying an error message
folkertdev Apr 29, 2025
d7eb15d
attempt to have rustfmt use the new logic
folkertdev Apr 29, 2025
6e1bddc
Apply suggestions from code review
folkertdev May 3, 2025
1305fcc
delay error for unsupported options
folkertdev May 3, 2025
8e86a0e
rename to get rid of the 'raw' concept
folkertdev May 17, 2025
d91e3d3
add `AsmOptions` with some named fields
folkertdev May 17, 2025
5e426f0
Rollup merge of #140113 - Urgau:rustc-book-page-toc, r=ehuss
fmease May 18, 2025
d6694ae
Rollup merge of #140490 - folkertdev:asm-parser-changes, r=Amanieu,tr…
fmease May 18, 2025
bb24a71
Rollup merge of #140874 - mejrs:rads, r=WaffleLapkin
fmease May 18, 2025
c7c3d67
Rollup merge of #140924 - Urgau:f32_f64_const_tests, r=Mark-Simulacrum
fmease May 18, 2025
106bb65
Rollup merge of #141045 - dpaoliello:noarmhazard, r=jieyouxu
fmease May 18, 2025
5b9b911
Rollup merge of #141071 - xizheyin:behind-upstream, r=Urgau
fmease May 18, 2025
a94cf15
Rollup merge of #141132 - bvanjoi:issue-141082, r=fmease
fmease May 18, 2025
cf4f0ac
Rollup merge of #141139 - jieyouxu:fix-rfl, r=Urgau
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
21 changes: 13 additions & 8 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3390,6 +3390,7 @@ version = "0.0.0"
dependencies = [
"rustc_ast",
"rustc_ast_pretty",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -3424,7 +3425,7 @@ dependencies = [
"rustc-demangle",
"rustc_abi",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_codegen_ssa",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -3467,6 +3468,7 @@ dependencies = [
"rustc_abi",
"rustc_arena",
"rustc_ast",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -3504,7 +3506,7 @@ dependencies = [
"rustc_abi",
"rustc_apfloat",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_fluent_macro",
Expand Down Expand Up @@ -3680,6 +3682,7 @@ dependencies = [
"rustc_ast",
"rustc_ast_passes",
"rustc_ast_pretty",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -3768,7 +3771,7 @@ dependencies = [
"rustc_abi",
"rustc_arena",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_feature",
Expand Down Expand Up @@ -3805,7 +3808,7 @@ dependencies = [
"itertools",
"rustc_abi",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_fluent_macro",
Expand Down Expand Up @@ -3950,6 +3953,7 @@ dependencies = [
"rustc_abi",
"rustc_ast",
"rustc_ast_pretty",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -4023,6 +4027,7 @@ dependencies = [
"odht",
"rustc_abi",
"rustc_ast",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down Expand Up @@ -4136,7 +4141,7 @@ dependencies = [
"rustc_abi",
"rustc_arena",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_const_eval",
"rustc_data_structures",
"rustc_errors",
Expand All @@ -4162,7 +4167,7 @@ version = "0.0.0"
dependencies = [
"rustc_abi",
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_fluent_macro",
Expand Down Expand Up @@ -4232,7 +4237,7 @@ dependencies = [
"rustc_ast",
"rustc_ast_lowering",
"rustc_ast_pretty",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_expand",
Expand Down Expand Up @@ -4278,7 +4283,7 @@ name = "rustc_privacy"
version = "0.0.0"
dependencies = [
"rustc_ast",
"rustc_attr_parsing",
"rustc_attr_data_structures",
"rustc_data_structures",
"rustc_errors",
"rustc_fluent_macro",
Expand Down
4 changes: 2 additions & 2 deletions compiler/rustc_attr_parsing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
//! `#[stable(...)]` and `#[unstable()]` cannot occur together, and both semantically define
//! a "stability" of an item. So, the stability attribute has an
//! [`AttributeParser`](attributes::AttributeParser) that recognizes both the `#[stable()]`
//! and `#[unstable()]` syntactic attributes, and at the end produce a single [`AttributeKind::Stability`].
//! and `#[unstable()]` syntactic attributes, and at the end produce a single
//! [`AttributeKind::Stability`](rustc_attr_data_structures::AttributeKind::Stability).
//!
//! As a rule of thumb, when a syntactical attribute can be applied more than once, they should be
//! combined into a single semantic attribute. For example:
Expand Down Expand Up @@ -91,6 +92,5 @@ mod session_diagnostics;
pub use attributes::cfg::*;
pub use attributes::util::{find_crate_name, is_builtin_attr, parse_version};
pub use context::{AttributeParser, OmitDoc};
pub use rustc_attr_data_structures::*;

rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
1 change: 1 addition & 0 deletions compiler/rustc_builtin_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ doctest = false
# tidy-alphabetical-start
rustc_ast = { path = "../rustc_ast" }
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
rustc_attr_data_structures = { path = "../rustc_attr_data_structures" }
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_errors = { path = "../rustc_errors" }
Expand Down
Loading
Loading