Skip to content

Rollup of 8 pull requests #143267

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

Merged
merged 22 commits into from
Jul 1, 2025
Merged

Rollup of 8 pull requests #143267

merged 22 commits into from
Jul 1, 2025

Conversation

matthiaskrgr
Copy link
Member

@matthiaskrgr matthiaskrgr commented Jul 1, 2025

Successful merges:

Failed merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

tgross35 and others added 22 commits June 23, 2025 06:25
These tests have expanded beyond the RFC, so rename the directory
`rfc-3086-metavar-expr` to `metavar-expressions`. `concat` (which wasn't
part of the RFC) now fits in this group, so merge its tests into the
`metavar-expressions` directory.

Additionally rename some related `issue-*` tests.
This check was added unconditionally in c51b229 ("Disable f16 on
Aarch64 without `neon`") and reverted in 4a8d357 ("Revert "Disable
`f16` on Aarch64 without `neon`"") since it did not fail in Rust's
build. However, it is still possible to hit this crash if using LLVM 19
built with assertions, so disable the type conditionally based on
version here.

Note that for these builds, a similar patch is needed in the build
script for `compiler-builtins` since it does not yet use
`cfg(target_has_reliable_f16)` (hopefully to be resolved in the near
future).

Report: https://www.github.com/rust-lang/rust/pull/139276#issuecomment-3014781652
Original LLVM issue: https://www.github.com/llvm/llvm-project/issues/129394
`syntax-errors` currently contains both syntax error tests (which don't
need expansion) and tests for incorrect instantiations of the `count`
metavariable expression (which do need expansion). Split the
expansion-dependent tests to a separate file and remove unneeded
invocations from `syntax-errors`, to ensure we are catching these before
expansion.
Add tests showing the current state to make it more clear when output
gets updated later in refactoring.
More diagnostic structs related to metavariable expressions will be
introduced. Introduce the abbreviation "mve" which is reasonably
unambiguous (`rg Mve` and `rg '(\b|_|-)mve(\b|_|-)'` return no results
outside of a Thumb target feature) and use it for these diagnostic
types. A new module is also created.
Move the `concat` implementation to a separate function so it is easier
to work on. Other metavariable expressions are already split this way.

This is a non-functional change.
Move this structure directly above the `parse_<expr>` functions that
return it to keep top-down flow.

This is a non-functional change.
The main purpose of this is to upgrade `object` and `gimli`, which will
allow us to drop outdated versions once backtrace also updates.
The only semver breakage in `object`'s is in `elf::R_RISCV_GNU_*` and
`pe::IMAGE_WEAK_EXTERN_*` constants, as well as Mach-O dyld, which don't
appear to be used here. `gimli` is similar, there is only minor breakage
related to dyld.

These version upgrades were also done in the library.

`bstr`, `similar`, and `regex` are also upgraded to the latest minor
version here to match what the lockfile already uses. The `regex`
comment about `memchr` version hasn't been relevant to this lockfile
since e95d15a ("Pin memchr to 2.5.0 in the library rather than
rustc_ast") and is no longer relevant in the library lockfile either.

Object Changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370
Gimli changelog: https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md#0320
…r=cuviper

Disable f16 on Aarch64 without neon for llvm < 20.1.1

This check was added unconditionally in c51b229 ("Disable f16 on Aarch64 without `neon`") and reverted in 4a8d357 ("Revert "Disable `f16` on Aarch64 without `neon`"") since it did not fail in Rust's build. However, it is still possible to hit this crash if using LLVM 19 built with assertions, so disable the type conditionally based on version here.

Note that for these builds, a similar patch is needed in the build script for `compiler-builtins` since it does not yet use `cfg(target_has_reliable_f16)` (hopefully to be resolved in the near future).

Report: rust-lang#139276 (comment)
Original LLVM issue: llvm/llvm-project#129394
…rait, r=workingjubilee

inherit `#[align]` from trait method prototypes

````@workingjubilee```` this seems straightforward enough. Now that we're planning to make `-Cmin-function-alignment` a target modifier, I don't think there are any cross-crate complications here?

````@Jules-Bertholet```` is this the behavior you had in mind? In particular the inheritance of the attribute of a default impl is maybe a bit unintuitive at first? (but I think it's ok if that behavior is explicitly documented).

r? ghost
rustdoc default faviocon

rust-lang#143154
default favicon now appears to be the new behavior, instead of no favicon.
Replace `ItemCtxt::report_placeholder_type_error` match with a call to `TyCtxt::def_descr`

Fixes rust-lang#143128.

We could likely use `tcx.def_descr` in more places (and therefore remove more `descr` methods). If it's something that we want to do, I can send a follow-up.

r? `@oli-obk`
…ation, r=petrochenkov

mbe: Add tests and restructure metavariable expressions

Add tests that show better diagnostics, and factor `concat` handling to a separate function. Each commit message has further details.

This performs the nonfunctional perparation for further changes such as rust-lang#142950 and rust-lang#142975 .
Upgrade dependencies in run-make-support

The main purpose of this is to upgrade `object` and `gimli`, which will allow us to drop outdated versions once backtrace also updates. The only semver breakage in `object`'s is in `elf::R_RISCV_GNU_*` and `pe::IMAGE_WEAK_EXTERN_*` constants, as well as Mach-O dyld, which don't appear to be used here. `gimli` is similar, there is only minor breakage related to dyld.

These version upgrades were also done in the library.

`bstr`, `similar`, and `regex` are also upgraded to the latest minor version here to match what the lockfile already uses. The `regex` comment about `memchr` version hasn't been relevant to this lockfile since e95d15a ("Pin memchr to 2.5.0 in the library rather than rustc_ast") and is no longer relevant in the library lockfile either.

Object Changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370
Gimli changelog: https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md#0320
…on, r=compiler-errors

linkify CodeSuggestion in doc comments
…r=compiler-errors

fix: Emit suggestion filename if primary diagnostic span is dummy

While working on using `annotate-snippets` as `rustc`'s emitter, I came across [`tests/ui/resolve/resolve-conflict-extern-crate-vs-extern-crate.stderr`](https://github.com/rust-lang/rust/blob/b03b3a7ec92682be2917540b679478d41c95a30c/tests/ui/resolve/resolve-conflict-extern-crate-vs-extern-crate.stderr), which lacked a filename for both the annotation and the suggestion, which seemed like a bug to me. After some investigation, I found that this is happening because the primary span is a dummy, so its filename doesn't get output, and its filename matches the one for the suggestion, so the suggestion's filename doesn't get output. To fix this issue, I made it so that the filename for a suggestion will get output if the primary span is a dummy.
@rustbot rustbot added A-attributes Area: Attributes (`#[…]`, `#![…]`) A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-tidy Area: The tidy tool S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Jul 1, 2025
@rustbot rustbot added the rollup A PR which is a rollup label Jul 1, 2025
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Jul 1, 2025

📌 Commit 3944c8c has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 1, 2025
@bors
Copy link
Collaborator

bors commented Jul 1, 2025

⌛ Testing commit 3944c8c with merge f46ce66...

@bors
Copy link
Collaborator

bors commented Jul 1, 2025

☀️ Test successful - checks-actions
Approved by: matthiaskrgr
Pushing f46ce66 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Jul 1, 2025
@bors bors merged commit f46ce66 into rust-lang:master Jul 1, 2025
11 checks passed
@rustbot rustbot added this to the 1.90.0 milestone Jul 1, 2025
@rust-timer
Copy link
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#143125 Disable f16 on Aarch64 without neon for llvm < 20.1.1 a7c7f220c742af0342c2bd400c368f25d77c4637 (link)
#143156 inherit #[align] from trait method prototypes b65ad534ea29243fc651aa3aebf4632b45db2675 (link)
#143178 rustdoc default faviocon 0d4989b61fd08abb46827d6f02a24dc0a868cc29 (link)
#143234 Replace ItemCtxt::report_placeholder_type_error match wit… 5f75fa9617359bdc339e01e5fde38f766db906c1 (link)
#143245 mbe: Add tests and restructure metavariable expressions fe501023cea09720c2d34d5b14658174dc5f6bb3 (link)
#143257 Upgrade dependencies in run-make-support 13189271a91f70cb428cb03273601f7f4cc815ce (link)
#143263 linkify CodeSuggestion in doc comments 7bd0b20e22355befb39dbde99ee329b37ba6d672 (link)
#143264 fix: Emit suggestion filename if primary diagnostic span is… e24793cf43c14c08c95f549ca043a58bbcfb5edf (link)

previous master: 6988a8fea7

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

Copy link
Contributor

github-actions bot commented Jul 1, 2025

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 6988a8f (parent) -> f46ce66 (this PR)

Test differences

Show 264 test diffs

Stage 1

  • [ui] tests/ui/closures/missing-body.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/hygiene.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/repetitions.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/syntax-errors.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/unicode-expansion.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/metavar-expressions/concat-allowed-operations.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/concat-raw-identifiers.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/concat-unicode-expansion.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/concat-usage-errors.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/count-and-length-are-distinct.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/count-empty-index-arg.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/dollar-dollar-has-correct-behavior.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/macro-expansion.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/out-of-bounds-arguments.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/required-feature.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/metavar-expressions/usage-errors.rs: [missing] -> pass (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/count-and-length-are-distinct.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/dollar-dollar-has-correct-behavior.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/feature-gate-macro_metavar_expr.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/out-of-bounds-arguments.rs: pass -> [missing] (J0)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs: pass -> [missing] (J0)
  • errors::metavar_exprs::verify_expand_mve_unrecognized_var_44: [missing] -> pass (J1)
  • errors::verify_expand_arg_not_attributes_13: [missing] -> pass (J1)
  • errors::verify_expand_attr_no_arguments_9: [missing] -> pass (J1)
  • errors::verify_expand_attribute_meta_item_16: pass -> [missing] (J1)
  • errors::verify_expand_attribute_single_word_16: [missing] -> pass (J1)
  • errors::verify_expand_attributes_wrong_form_15: pass -> [missing] (J1)
  • errors::verify_expand_cannot_be_name_of_macro_13: pass -> [missing] (J1)
  • errors::verify_expand_collapse_debuginfo_illegal_6: [missing] -> pass (J1)
  • errors::verify_expand_collapse_debuginfo_illegal_7: pass -> [missing] (J1)
  • errors::verify_expand_crate_name_in_cfg_attr_40: [missing] -> pass (J1)
  • errors::verify_expand_crate_type_in_cfg_attr_41: [missing] -> pass (J1)
  • errors::verify_expand_duplicate_matcher_binding_35: pass -> [missing] (J1)
  • errors::verify_expand_empty_delegation_mac_39: pass -> [missing] (J1)
  • errors::verify_expand_expected_paren_or_brace_38: pass -> [missing] (J1)
  • errors::verify_expand_feature_not_allowed_18: [missing] -> pass (J1)
  • errors::verify_expand_glob_delegation_outside_impls_39: [missing] -> pass (J1)
  • errors::verify_expand_glob_delegation_traitless_qpath_42: [missing] -> pass (J1)
  • errors::verify_expand_helper_attribute_name_invalid_17: [missing] -> pass (J1)
  • errors::verify_expand_helper_attribute_name_invalid_18: pass -> [missing] (J1)
  • errors::verify_expand_incomplete_parse_27: [missing] -> pass (J1)
  • errors::verify_expand_incomplete_parse_28: pass -> [missing] (J1)
  • errors::verify_expand_invalid_cfg_multiple_predicates_23: [missing] -> pass (J1)
  • errors::verify_expand_invalid_cfg_no_parens_21: [missing] -> pass (J1)
  • errors::verify_expand_invalid_cfg_no_parens_22: pass -> [missing] (J1)
  • errors::verify_expand_invalid_cfg_no_predicate_22: [missing] -> pass (J1)
  • errors::verify_expand_invalid_cfg_no_predicate_23: pass -> [missing] (J1)
  • errors::verify_expand_invalid_cfg_predicate_literal_25: pass -> [missing] (J1)
  • errors::verify_expand_invalid_fragment_specifier_36: [missing] -> pass (J1)
  • errors::verify_expand_invalid_fragment_specifier_37: pass -> [missing] (J1)
  • errors::verify_expand_macro_body_stability_9: pass -> [missing] (J1)
  • errors::verify_expand_macro_const_stability_8: pass -> [missing] (J1)
  • errors::verify_expand_meta_var_dif_seq_matchers_5: pass -> [missing] (J1)
  • errors::verify_expand_meta_var_expr_unrecognized_var_3: pass -> [missing] (J1)
  • errors::verify_expand_missing_fragment_specifier_36: pass -> [missing] (J1)
  • errors::verify_expand_module_circular_29: [missing] -> pass (J1)
  • errors::verify_expand_module_circular_30: pass -> [missing] (J1)
  • errors::verify_expand_module_file_not_found_30: [missing] -> pass (J1)
  • errors::verify_expand_module_file_not_found_31: pass -> [missing] (J1)
  • errors::verify_expand_module_multiple_candidates_31: [missing] -> pass (J1)
  • errors::verify_expand_not_a_meta_item_10: [missing] -> pass (J1)
  • errors::verify_expand_not_a_meta_item_11: pass -> [missing] (J1)
  • errors::verify_expand_only_one_word_11: [missing] -> pass (J1)
  • errors::verify_expand_proc_macro_back_compat_43: [missing] -> pass (J1)
  • errors::verify_expand_proc_macro_derive_tokens_33: [missing] -> pass (J1)
  • errors::verify_expand_proc_macro_derive_tokens_34: pass -> [missing] (J1)
  • errors::verify_expand_recursion_limit_reached_19: [missing] -> pass (J1)
  • errors::verify_expand_recursion_limit_reached_20: pass -> [missing] (J1)
  • errors::verify_expand_remove_expr_not_supported_20: [missing] -> pass (J1)
  • errors::verify_expand_remove_expr_not_supported_21: pass -> [missing] (J1)
  • errors::verify_expand_remove_node_not_supported_28: [missing] -> pass (J1)
  • errors::verify_expand_remove_node_not_supported_29: pass -> [missing] (J1)
  • errors::verify_expand_trace_macro_32: [missing] -> pass (J1)
  • errors::verify_expand_trace_macro_33: pass -> [missing] (J1)
  • errors::verify_expand_wrong_fragment_kind_25: [missing] -> pass (J1)
  • errors::verify_expand_wrong_fragment_kind_26: pass -> [missing] (J1)

Stage 2

  • [ui] tests/ui/closures/missing-body.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/allowed-operations.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/raw-identifiers.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/repetitions.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/syntax-errors.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/macro-metavar-expr-concat/unicode-expansion.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/metavar-expressions/concat-allowed-operations.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/concat-raw-identifiers.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/concat-trace-errors.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/concat-usage-errors.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/dollar-dollar-has-correct-behavior.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/feature-gate-macro_metavar_expr.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/macro-expansion.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/out-of-bounds-arguments.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/required-feature.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/syntax-errors.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/metavar-expressions/usage-errors.rs: [missing] -> pass (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/count-and-length-are-distinct.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/feature-gate-macro_metavar_expr.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/macro-expansion.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/out-of-bounds-arguments.rs: pass -> [missing] (J2)
  • [ui] tests/ui/macros/rfc-3086-metavar-expr/required-feature.rs: pass -> [missing] (J2)

(and 46 additional test diffs)

Additionally, 118 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard f46ce66fcc3d6058f90ac5bf0930f940f1e7b0ca --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. x86_64-apple-2: 6258.1s -> 4255.5s (-32.0%)
  2. dist-aarch64-linux: 7823.1s -> 5650.5s (-27.8%)
  3. dist-aarch64-apple: 6072.6s -> 4811.9s (-20.8%)
  4. mingw-check-tidy: 71.4s -> 81.5s (14.1%)
  5. dist-x86_64-apple: 9356.3s -> 8076.2s (-13.7%)
  6. aarch64-gnu: 7003.6s -> 6475.0s (-7.5%)
  7. dist-riscv64-linux: 4885.8s -> 4532.3s (-7.2%)
  8. mingw-check-1: 1897.4s -> 1762.9s (-7.1%)
  9. x86_64-gnu-stable: 7687.0s -> 7173.0s (-6.7%)
  10. test-various: 4577.9s -> 4276.7s (-6.6%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (f46ce66): comparison URL.

Overall result: ❌ regressions - please read the text below

Our benchmarks found a performance regression caused by this PR.
This might be an actual regression, but it can also be just noise.

Next Steps:

  • If the regression was expected or you think it can be justified,
    please write a comment with sufficient written justification, and add
    @rustbot label: +perf-regression-triaged to it, to mark the regression as triaged.
  • If you think that you know of a way to resolve the regression, try to create
    a new PR with a fix for the regression.
  • If you do not understand the regression or you think that it is just noise,
    you can ask the @rust-lang/wg-compiler-performance working group for help (members of this group
    were already notified of this PR).

@rustbot label: +perf-regression
cc @rust-lang/wg-compiler-performance

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
0.2% [0.2%, 0.2%] 1
Regressions ❌
(secondary)
0.3% [0.1%, 1.1%] 18
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.2% [0.2%, 0.2%] 1

Max RSS (memory usage)

Results (primary 3.3%, secondary 3.8%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
3.3% [3.3%, 3.3%] 1
Regressions ❌
(secondary)
4.5% [2.1%, 7.5%] 6
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.7% [-0.7%, -0.7%] 1
All ❌✅ (primary) 3.3% [3.3%, 3.3%] 1

Cycles

Results (primary -1.1%, secondary 2.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.9% [1.9%, 1.9%] 1
Regressions ❌
(secondary)
2.6% [0.5%, 5.0%] 10
Improvements ✅
(primary)
-1.5% [-1.9%, -1.2%] 7
Improvements ✅
(secondary)
-1.2% [-1.6%, -0.8%] 2
All ❌✅ (primary) -1.1% [-1.9%, 1.9%] 8

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 461.861s -> 461.485s (-0.08%)
Artifact size: 372.23 MiB -> 372.20 MiB (-0.01%)

@rustbot rustbot added the perf-regression Performance regression. label Jul 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-tidy Area: The tidy tool merged-by-bors This PR was explicitly merged by bors. perf-regression Performance regression. rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants