Skip to content
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

rustc_monomorphize cleanups #116875

Merged
merged 5 commits into from
Oct 20, 2023
Merged

Commits on Oct 18, 2023

  1. Configuration menu
    Copy the full SHA
    025eb20 View commit details
    Browse the repository at this point in the history
  2. Remove empty MirUsedCollector::visit_local.

    It has not effect, because the default `visit_local` in `mir::Visitor`
    is already empty.
    nnethercote committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    42c8803 View commit details
    Browse the repository at this point in the history
  3. Inline and remove item_requires_monomorphization.

    It's very simple and has a single call site.
    nnethercote committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    55c5ab9 View commit details
    Browse the repository at this point in the history
  4. Streamline build_skip_move_check_fns.

    It's just a `filter_map(...).collect()`.
    nnethercote committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    4f92337 View commit details
    Browse the repository at this point in the history
  5. Remove UnknownPartitionStrategy error.

    This became unused in rust-lang#112053, when `-Zcgu-partitioning-strategy` was
    removed.
    nnethercote committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    a145b49 View commit details
    Browse the repository at this point in the history