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 4 pull requests #116934

Closed
wants to merge 8 commits into from

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. Configuration menu
    Copy the full SHA
    c1c5a1d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    60c9544 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    2d144d2 View commit details
    Browse the repository at this point in the history
  2. 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 authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    eb6ecf9 View commit details
    Browse the repository at this point in the history
  3. 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 authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    eebbe24 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#116906 - compiler-errors:version-0, r=oli-obk

    Use v0.0.0 in compiler crates
    
    I may be totally off base here, but my understanding is that it's conventional to use v0.0.0 to reflect the unversioned nature of the compiler crates. Fix that for some of the compiler crates that were created recently.
    matthiaskrgr authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    b857bb3 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#116921 - Fenex:fix/bootstrap-setup-info-msg…

    …, r=compiler-errors
    
    fix(bootstrap) info message show correct path now
    
    running `./x setup tools` showed me a note with incorrect path
    matthiaskrgr authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    3d04d6f View commit details
    Browse the repository at this point in the history