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 #94485

Closed
wants to merge 10 commits into from
Closed

Commits on Feb 11, 2022

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

Commits on Feb 24, 2022

  1. ARM: Only allow using d16-d31 with asm! when supported by the target

    Support can be determined by checking for the "d32" LLVM feature.
    Amanieu committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    7cee1b4 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2022

  1. 7 - Make more use of let_chains

    Continuation of rust-lang#94376.
    
    cc rust-lang#53667
    c410-f3r committed Mar 1, 2022
    Configuration menu
    Copy the full SHA
    7aa5ea9 View commit details
    Browse the repository at this point in the history
  2. compiler: fix some typos

    cuishuang committed Mar 1, 2022
    Configuration menu
    Copy the full SHA
    eb2b944 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    765205b View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#93858 - krallin:process-process_group, r=dt…

    …olnay
    
    Add a `process_group` method to UNIX `CommandExt`
    
    - Tracking issue: rust-lang#93857
    - RFC: rust-lang/rfcs#3228
    
    Add a `process_group` method to `std::os::unix::process::CommandExt` that
    allows setting the process group id (i.e. calling `setpgid`) in the child, thus
    enabling users to set process groups while leveraging the `posix_spawn` fast
    path.
    Dylan-DPC authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    cf76a19 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#94339 - Amanieu:arm-d32, r=nagisa

    ARM: Only allow using d16-d31 with asm! when supported by the target
    
    Support can be determined by checking for the "d32" LLVM feature.
    
    r? `@nagisa`
    Dylan-DPC authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    ffc40cb View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#94433 - Urgau:check-cfg-allowness, r=petroc…

    …henkov
    
    Improve allowness of the unexpected_cfgs lint
    
    This pull-request improve the allowness (`#[allow(...)]`) of the `unexpected_cfgs` lint.
    
    Before this PR only crate level `#![allow(unexpected_cfgs)]` worked, now with this PR it also work when put around `cfg!` or if it is in a upper level. Making it work ~for the attributes `cfg`, `cfg_attr`, ...~ for the same level is awkward as the current code is design to give "Some parent node that is close to this macro call" (cf. https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/base/struct.ExpansionData.html) meaning that allow on the same line as an attribute won't work. I'm note even sure if this would be possible.
    
    Found while working on rust-lang#94298.
    r? `@petrochenkov`
    Dylan-DPC authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    50e3ab3 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#94476 - c410-f3r:yet-more-let-chains, r=Dyl…

    …an-DPC
    
    7 - Make more use of `let_chains`
    
    Continuation of rust-lang#94376.
    
    cc rust-lang#53667
    Dylan-DPC authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    1c5a915 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#94482 - cuishuang:master, r=Dylan-DPC

    compiler: fix some typos
    Dylan-DPC authored Mar 1, 2022
    Configuration menu
    Copy the full SHA
    77d5946 View commit details
    Browse the repository at this point in the history