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 8 pull requests #70066

Closed
wants to merge 47 commits into from
Closed

Commits on Mar 5, 2020

  1. Configuration menu
    Copy the full SHA
    d6a17b5 View commit details
    Browse the repository at this point in the history
  2. bootstrap: Use hash to determine if sanitizers needs to be rebuilt

    * Rebuild sanitizers runtimes when LLVM submodule commit changes.
    * When rebuilding LLVM / sanitizers, remove the stamp file before
      starting the build process to invalidate previous build output.
    tmiasko committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    726d518 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Configuration menu
    Copy the full SHA
    d49306d View commit details
    Browse the repository at this point in the history
  2. fix expand-to-unstable test

    RalfJung committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    c7eb0f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2020

  1. Remove free_region_map from TypeckTables

    It was unused.
    matthewjasper committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    30bf3e1 View commit details
    Browse the repository at this point in the history
  2. Don't use TypeckTables in NiceRegionError

    Regions in TypeckTables will be erased, so are unusable for error
    reporting.
    matthewjasper committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    f206c3e View commit details
    Browse the repository at this point in the history
  3. Erase regions in writeback

    Also skip duplicated region solving entirely with `-Zborrowck=mir`.
    matthewjasper committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    1fd3246 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9772562 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    996a51b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a2160e6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ec86270 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a4125a6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    48b9526 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bbd2129 View commit details
    Browse the repository at this point in the history
  11. simplify submod_path

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    7042554 View commit details
    Browse the repository at this point in the history
  12. submod_path: use id.span

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    586c9b5 View commit details
    Browse the repository at this point in the history
  13. extract parse_mod

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    d06031c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a2a32c7 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    4d05f90 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c824f5d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4a70313 View commit details
    Browse the repository at this point in the history
  18. expand: use push_directory

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    033f8a2 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    60a00b0 View commit details
    Browse the repository at this point in the history
  20. extract parse_external_module

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    16d444a View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    a1f9953 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    97fa2bd View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    fb540a9 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    e2cd4d0 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    e830157 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    c16f0d3 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    2454395 View commit details
    Browse the repository at this point in the history
  28. parser/expand: minor cleanup

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    ed9d81e View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    9741bb6 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    48b8ecc View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    998b33e View commit details
    Browse the repository at this point in the history
  32. fix rebase fallout

    Centril committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    5cc4e94 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2020

  1. Small fixes in documentation

    typo fix + markdown fix for consistency
    JOE1994 committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    442e5ff View commit details
    Browse the repository at this point in the history
  2. Update books

    ehuss committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    194de27 View commit details
    Browse the repository at this point in the history
  3. --bless windows test

    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    8b0698b View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#68746 - matthewjasper:metahygiene, r=petroc…

    …henkov
    
    Make macro metavars respect (non-)hygiene
    
    This makes them more consistent with other name resolution while not breaking any code on crater.
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    9d56bb0 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#69189 - matthewjasper:erase-the-world, r=ni…

    …komatsakis
    
    Erase regions in writeback
    
    Regions in `TypeckTables` (except canonicalized user annotations) are now erased. Further, we no longer do lexical region solving on item bodies with `-Zborrowck=mir`.
    
    cc rust-lang#68261
    r? @nikomatsakis
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    fe69360 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#69688 - JohnTitor:move-tidy, r=Mark-Simulacrum

    Move tidy check to mingw-check
    
    Fixes rust-lang#69613
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    2b7c6a3 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#69735 - tmiasko:bootstrap-sanitizers-hash, …

    …r=Mark-Simulacrum
    
    bootstrap: Use hash to determine if sanitizers needs to be rebuilt
    
    * Rebuild sanitizers runtimes when LLVM submodule commit changes.
    * When rebuilding LLVM / sanitizers, remove the stamp file before
      starting the build process to invalidate previous build output.
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    94603b3 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#69838 - Centril:expand-module, r=petrochenkov

    Expansion-driven outline module parsing
    
    After this PR, the parser will not do any conditional compilation or loading of external module files when `mod foo;` is encountered. Instead, the parser only leaves `mod foo;` in place in the AST, with no items filled in. Expansion later kicks in and will load the actual files and do the parsing. This entails that the following is now valid:
    
    ```rust
    #[cfg(FALSE)]
    mod foo {
        mod bar {
            mod baz; // `foo/bar/baz.rs` doesn't exist, but no error!
        }
    }
    ```
    
    Fixes rust-lang#64197.
    
    r? @petrochenkov
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    90ebf47 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#69922 - RalfJung:less-intrinsic, r=oli-obk

    implement zeroed and uninitialized with MaybeUninit
    
    This is the second attempt of doing such a change (first PR: rust-lang#62150). The last change [got reverted](rust-lang#63343) because it [caused](rust-lang#62825) some [issues](rust-lang#52898 (comment)) in [code that incorrectly used these functions](AltF02/x11-rs#99).
    
    Since then, the [problematic code has been fixed](AltF02/x11-rs#101), and rustc [gained a lint](rust-lang#63346) that is able to detect many misuses of these functions statically and a [dynamic check that panics](rust-lang#66059) instead of causing UB for some incorrect uses.
    
    Fixes rust-lang#62825
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    8582b04 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#70061 - JOE1994:patch-2, r=Dylan-DPC

    Cosmetic fixes in documentation
    
    typo fix + markdown fix for consistency
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    dd29171 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#70064 - ehuss:update-books, r=ehuss

    Update books
    
    ## reference
    
    4 commits in 559e09c..e2f11fe
    2020-03-02 01:17:14 +0100 to 2020-03-10 06:59:24 +0100
    - Update rustc-guide to rustc-dev-guide (rust-lang/reference#777)
    - Fix expression and statement grammar. (rust-lang/reference#776)
    - Fix grammar for tuple struct patterns. (rust-lang/reference#775)
    - A typo? (rust-lang/reference#770)
    
    ## rust-by-example
    
    3 commits in db57f899ea2a56a544c8d280cbf033438666273d..cb369ae95ca36b841960182d26f6d5d9b2e3cc18
    2020-02-18 17:46:46 -0300 to 2020-03-14 12:13:22 -0500
    - Use rust-lang/rust linkchecker on CI. (rust-lang/rust-by-example#1310)
    - Rewrite freeze.md (rust-lang/rust-by-example#1314)
    - Clarify type suffixing with example (rust-lang/rust-by-example#1312)
    
    ## embedded-book
    
    2 commits in b81ffb7a6f4c5aaed92786e770e99db116aa4ebd..d22a9c487c78095afc4584f1d9b4ec43529d713c
    2020-02-27 08:06:04 +0000 to 2020-03-04 09:46:30 +0000
    - Updated documentation on profile-overrides  (rust-embedded/book#230)
    - Update information on Cargo `profile-overrides`  (rust-embedded/book#229)
    Centril committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    2e0141f View commit details
    Browse the repository at this point in the history