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 6 pull requests #103009

Merged
merged 12 commits into from
Oct 13, 2022
Merged

Rollup of 6 pull requests #103009

merged 12 commits into from
Oct 13, 2022

Commits on Oct 7, 2022

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

Commits on Oct 9, 2022

  1. openbsd: don't reallocate a guard page on the stack.

    the kernel currently enforce that a stack is immutable. calling mmap(2) or 
    mprotect(2) to change it will result in EPERM, which generate a panic!().
    
    so just do like for Linux, and trust the kernel to do the right thing.
    semarie committed Oct 9, 2022
    Configuration menu
    Copy the full SHA
    b3c21ef View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. fix rust-lang#102946

    TaKO8Ki committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    b11dddd View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. Configuration menu
    Copy the full SHA
    4a8cfe9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    61f0973 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    af3c6f9 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#102765 - TaKO8Ki:follow-up-to-102708, r=com…

    …piler-errors
    
    Suggest `==` to the first expr which has `ExprKind::Assign` kind
    
    follow-up to rust-lang#102708
    
    [playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=4241dc33ed8af02e1ef530d6b14903fd)
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    ad45dd1 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#102854 - semarie:openbsd-immutablestack, r=…

    …m-ou-se
    
    openbsd: don't reallocate a guard page on the stack.
    
    the kernel currently enforce that a stack is immutable. calling mmap(2) or  mprotect(2) to change it will result in EPERM, which generate a panic!().
    
    so just do like for Linux, and trust the kernel to do the right thing.
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    376c81c View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#102904 - compiler-errors:rpitit-verbosely, …

    …r=cjgillot
    
    Print return-position `impl Trait` in trait verbosely if `-Zverbose`
    
    Makes the behavior a bit closer to regular `impl Trait` printing
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    dbff6a9 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#102947 - compiler-errors:sort-elaborated-ex…

    …istentials, r=cjgillot
    
    Sort elaborated existential predicates in `object_ty_for_trait`
    
    r? `@cjgillot`
    
    I think that rust-lang#102845 caused rust-lang#102933. Depending on the order that we elaborate these existential projection predicates, there's no guarantee that they'll be sorted by def id, which is what is failing the assertion in the issue.
    
    Fixes rust-lang#102933
    Fixes rust-lang#102973
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    42991e5 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#102956 - TaKO8Ki:fix-102946, r=fee1-dead

    Use `full_res` instead of `expect_full_res`
    
    Fixes rust-lang#102946
    Fixes rust-lang#102978
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    48f950c View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#102999 - compiler-errors:issue-102985, r=fe…

    …e1-dead
    
    Delay `is_intrinsic` query until after we've determined the callee is a function
    
    Fixes rust-lang#102985
    Dylan-DPC authored Oct 13, 2022
    Configuration menu
    Copy the full SHA
    0f12b40 View commit details
    Browse the repository at this point in the history