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

Rollup of 5 pull requests #116901

Closed
wants to merge 10 commits into from

Commits on Oct 12, 2023

  1. Configuration menu
    Copy the full SHA
    97d162a View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Configuration menu
    Copy the full SHA
    e8857d0 View commit details
    Browse the repository at this point in the history
  2. Change my name in mailmap

    blyxyas committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    54eef16 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1c5a1d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    973d589 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#116493 - compiler-errors:coinductive-cycle-…

    …lint, r=lcnr
    
    Bump `COINDUCTIVE_OVERLAP_IN_COHERENCE` to deny + warn in deps
    
    1.73 is the first place this shows up in stable (recall that there was only 1 regression), so let's bump this to deny on nightly.
    
    r? lcnr
    matthiaskrgr committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    b6754a7 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#116663 - compiler-errors:resolve-regions, r…

    …=lcnr
    
    Don't ICE when encountering unresolved regions in `fully_resolve`
    
    We can encounter unresolved regions due to unconstrained impl lifetime arguments because `collect_return_position_impl_trait_in_trait_tys` runs before WF actually checks that the impl is well-formed.
    
    Fixes rust-lang#116525
    matthiaskrgr committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    7dc3982 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#116837 - oli-obk:smir_run_macro, r=spastorino

    Avoid having `rustc_smir` depend on `rustc_interface` or `rustc_driver`
    
    This is done by moving all the logic into a macro that performs the entire "run" operation in one go.
    
    This makes rust-lang#116806 obsolete
    
    as a follow up we should make the macro usable without manually having to write
    
    ```rust
    #[macro_use]
    extern crate rustc_smir;
    extern crate stable_mir;
    extern crate rustc_driver;
    extern crate rustc_interface;
    use rustc_smir::rustc_internal;
    ```
    
    in every crate that uses the macro.
    
    r? `@spastorino`
    matthiaskrgr committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    1960cd9 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#116883 - blyxyas:fix-mailmap, r=Nilstrieb

    Change my name in mailmap
    
    I changed some things about my distro (my GPG key, along with the git username). This PR sets my committer name as `blyxyas` for those commits so that it is the same as my reviewer name in `thanks`.
    matthiaskrgr committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    72b9b47 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#116896 - cjgillot:single-inline, r=oli-obk

    Only check in a single place if a pass is enabled.
    
    Fixes rust-lang#116294
    matthiaskrgr committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    a76ab3e View commit details
    Browse the repository at this point in the history