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 3 pull requests #101519

Closed
wants to merge 17 commits into from
Closed

Commits on May 30, 2022

  1. Configuration menu
    Copy the full SHA
    1266099 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5c69055 View commit details
    Browse the repository at this point in the history
  3. Remove too long example

    Stovent committed May 30, 2022
    Configuration menu
    Copy the full SHA
    b998d82 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2022

  1. Configuration menu
    Copy the full SHA
    1d3aab7 View commit details
    Browse the repository at this point in the history
  2. Use tcx.hir() utils for spans in MIR building.

    This corrects the `span_with_body` in the case of closures, which was
    incorrectly shortened to the `def_span`.
    cjgillot committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    520bee4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d0f244 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7999207 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e6cf3ec View commit details
    Browse the repository at this point in the history
  6. Shrink some visibilities.

    cjgillot committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    c51c33e View commit details
    Browse the repository at this point in the history
  7. Bless codegen test.

    cjgillot committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    7089bed View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bbe27e7 View commit details
    Browse the repository at this point in the history
  9. Bless codegen.

    cjgillot committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    6eddb03 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    850090d View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Bless coverage report.

    cjgillot committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    ac4121a View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Rollup merge of rust-lang#93873 - Stovent:big-ints, r=m-ou-se

    Reimplement `carrying_add` and `borrowing_sub` for signed integers.
    
    As per the discussion in rust-lang#85532, this PR reimplements `carrying_add` and `borrowing_sub` for signed integers.
    
    It also adds unit tests for both unsigned and signed integers, emphasing on the behaviours of the methods.
    Dylan-DPC authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    33bc548 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#101086 - cjgillot:thir-param, r=oli-obk

    Compute information about function parameters on THIR
    
    This avoids some manipulation of typeck results while building MIR.
    Dylan-DPC authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    dbcd465 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#101455 - thomcc:why-is-this-here, r=jyn514

    Avoid UB in the Windows filesystem code in... bootstrap?
    
    This basically a subset of the changes from rust-lang#101171. I didn't think to look in src/bootstrap for more windows filesystem API usage, which was apparently a mistake on my part. It's kinda goofy that stuff like this is in here, but what are you gonna do, computers are awful.
    
    I also added `winbase` to the `winapi` dep -- I tested this in a tmp crate but needed to add this to your Cargo.toml -- you `use winapi::stuff::winbase` in this function, but are relying on something else turning on that feature.
    Dylan-DPC authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    eb3b53f View commit details
    Browse the repository at this point in the history