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

Closed
wants to merge 32 commits into from
Closed

Commits on Aug 6, 2019

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

Commits on Aug 7, 2019

  1. warn for more cases

    RalfJung committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    16c0902 View commit details
    Browse the repository at this point in the history
  2. fix a comment

    RalfJung committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    a902f7a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d03b64a View commit details
    Browse the repository at this point in the history
  4. note a FIXME

    RalfJung committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    1873844 View commit details
    Browse the repository at this point in the history
  5. proper doc comment for 'recovered' field of variant

    Curtesy of petrochenkov
    RalfJung committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    b258ed5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    157b76a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6c7d84d View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2019

  1. Configuration menu
    Copy the full SHA
    3a6a29b View commit details
    Browse the repository at this point in the history
  2. Add test for issue 36804

    jackh726 committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    322a7d6 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Configuration menu
    Copy the full SHA
    3d231ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    77bfd7f View commit details
    Browse the repository at this point in the history
  3. rustc_target: add musl targets for MIPS64 arches

    Hard-float (unlike mips32 musl targets but consistent with any other
    musl target), MIPS64r2, n64 ABI.
    xen0n committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    e1bd8cb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c076392 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    799b13a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4fbbf99 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    01a6139 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    94fe8a3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    195d837 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b7f7756 View commit details
    Browse the repository at this point in the history
  11. review comments

    estebank committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    0d53f69 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    efa62d6 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    52da091 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5a54945 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    33d1082 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    bc1a4f5 View commit details
    Browse the repository at this point in the history
  17. fix tests

    estebank committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    45a5bc7 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#63165 - xen0n:mips64-musl-targets, r=alexcr…

    …ichton
    
    Add builtin targets for mips64(el)-unknown-linux-musl
    
    This is prerequisite for rust-lang/libc#1449.
    
    Tested locally to produce working static and dynamic binaries, ~~but CI config is untested for now~~ CI is to be added in a follow-up PR.
    
    *edit: dynamic binaries also confirmed working!*
    Centril committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    4637396 View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#63337 - estebank:break-ee0308, r=Centril

    Tweak mismatched types error
    
    - Change expected/found for type mismatches in `break`
    - Be more accurate when talking about diverging match arms
    - Tweak wording of function without a return value
    - Suggest calling bare functions when their return value can be coerced to the expected type
    - Give more parsing errors when encountering `foo(_, _, _)`
    
    Fix rust-lang#51767, fix rust-lang#62677, fix rust-lang#63136, cc rust-lang#37384, cc rust-lang#35241.
    Centril committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    3b99865 View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#63346 - RalfJung:zeroed-lint, r=eddyb

    Lint on some incorrect uses of mem::zeroed / mem::uninitialized
    
    Cc rust-lang#62825 and https://internals.rust-lang.org/t/make-mem-uninitialized-and-mem-zeroed-panic-for-some-types-where-0-is-a-niche/10605
    
    This does not yet handle `NonNull`/`NonZero*`, but it is a start.
    
    I also improved some doc issues I hit on the way, and added a useful helper to `TyS`.
    Centril committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    a133e53 View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#63350 - iluuu1994:use-associated-type-bound…

    …s, r=Centril
    
    Use associated_type_bounds where applicable - closes rust-lang#61738
    Centril committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    4cd0e7d View commit details
    Browse the repository at this point in the history
  22. Rollup merge of rust-lang#63394 - jackh726:issue-36804, r=jonas-schie…

    …vink
    
    Add test for issue 36804
    
    I slightly reduced the repro that ICEs on nightly-2017-01-20.
    
    Closes rust-lang#36804
    Centril committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    56d3742 View commit details
    Browse the repository at this point in the history