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 9 pull requests #78158

Closed
wants to merge 21 commits into from

Commits on Oct 17, 2020

  1. Configuration menu
    Copy the full SHA
    64c239c View commit details
    Browse the repository at this point in the history
  2. Optimize const value interning for ZST types

    Interning can skip any inhabited ZST type in general.
    wesleywiser committed Oct 17, 2020
    Configuration menu
    Copy the full SHA
    1d07d69 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2020

  1. Configuration menu
    Copy the full SHA
    762ded1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66c1fc4 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. Wrapping intrinsics update link

    Now refers to `wrapping_*`, not `checked_*` for wrapping intrinsics.
    mbartlett21 authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    061cf53 View commit details
    Browse the repository at this point in the history
  2. Add test for issue-68841

    JohnTitor committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    35b7374 View commit details
    Browse the repository at this point in the history
  3. Add test for issue-75053

    JohnTitor committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    7d4d64d View commit details
    Browse the repository at this point in the history
  4. Add test for issue-76375

    JohnTitor committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    af337e8 View commit details
    Browse the repository at this point in the history
  5. Add test for issue-77911

    JohnTitor committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    a619865 View commit details
    Browse the repository at this point in the history
  6. Drop unneeded mut

    These parameters don't get modified.
    LingMan committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    13f0f49 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2705cae View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    000d4d8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8cb4c14 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#78061 - wesleywiser:opt_zst_const_interning…

    …, r=oli-obk
    
    Optimize const value interning for ZST types
    
    Interning can skip any inhabited ZST type in general.
    
    Fixes rust-lang#68010
    
    r? @oli-obk
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    765b00e View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#78070 - RalfJung:const-panic-test, r=oli-obk

    we can test std and core panic macros together
    
    r? @oli-obk
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    3347384 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#78076 - est31:orphan_mod, r=Mark-Simulacrum

    Move orphan module-name/mod.rs files into module-name.rs files
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    831e459 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#78129 - mbartlett21:patch-1, r=kennytm

    Wrapping intrinsics doc links update.
    
    The links in the wrapping intrinsics docs now refer to the `wrapping_*` functions, not the `checked_*` functions.
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    02f240a View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#78133 - JohnTitor:mir-tests, r=lcnr

    Add some MIR-related regression tests
    
    Closes rust-lang#68841
    Closes rust-lang#75053
    Closes rust-lang#76375
    Closes rust-lang#77911
    
    I think they're fixed by rust-lang#77306.
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    81e15c3 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#78144 - bugadani:elements-nodrop, r=oli-obk

    Don't update `entries` in `TypedArena` if T does not need drop
    
    As far as I can tell, `entries` is only used when dropping `TypedArenaChunk`s and their contents. It is already ignored there, if T is not `mem::needs_drop`, this PR just skips updating it's value.
    
    You can see `TypedArenaChunk` ignoring the entry count in L71. The reasoning is similar to what you can find in `DroplessArena`.
    
    r? @oli-obk
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    5b2a3fc View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#78145 - LingMan:ast_pretty_mut, r=jonas-sch…

    …ievink
    
    Drop unneeded `mut`
    
    These parameters don't get modified.
    
    Note that `trailing_comment` is pub and gets exported from `rustc_ast_pretty`. Is that considered to be a stable API? If yes, and you want to reserve the right to modify `self` in `trailing_comment` in the future, that hunk would need to be dropped.
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    a27e149 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#78157 - GuillaumeGomez:remove-unused-type, …

    …r=jyn514
    
    Remove unused type from librustdoc
    
    r? @jyn514
    GuillaumeGomez authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    8ac8b56 View commit details
    Browse the repository at this point in the history