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 11 pull requests #51930

Closed
wants to merge 36 commits into from

Commits on Jun 27, 2018

  1. Fix doc links

    MajorBreakfast committed Jun 27, 2018
    Configuration menu
    Copy the full SHA
    30d825c View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2018

  1. Update liblibc

    est31 committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    64f8e3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb58db4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd8ca26 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5436a5c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3005162 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    03bcebb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9a9b747 View commit details
    Browse the repository at this point in the history
  8. Fix rebase

    estebank committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    8449c5a View commit details
    Browse the repository at this point in the history
  9. Suggest correct comparison against negative literal

    When parsing as emplacement syntax (`x<-1`), suggest the correct syntax
    for comparison against a negative value (`x< -1`).
    estebank committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    23d59d0 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2018

  1. Configuration menu
    Copy the full SHA
    d6cf182 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52b7eb9 View commit details
    Browse the repository at this point in the history
  3. Implement PartialEq between &str and OsString

    Allows for example `os_string == "something"`
    GabrielMajeri committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    0250302 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fdcee4d View commit details
    Browse the repository at this point in the history
  5. Add run-pass test

    GabrielMajeri committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    fbd3c92 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    28c4813 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    faaf250 View commit details
    Browse the repository at this point in the history
  8. update another cfail test

    japaric committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    ee52862 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1328bde View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    09856c8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    99ecdb3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    297109e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    9f92fce View commit details
    Browse the repository at this point in the history
  14. Restore the old behavior of $crate in nested macro_rules

    `$crate` is not resolved at def-site of a macro, but rather at "transitive def-site"
    petrochenkov committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    b69d511 View commit details
    Browse the repository at this point in the history
  15. Address comments

    petrochenkov committed Jun 29, 2018
    Configuration menu
    Copy the full SHA
    84f1bc8 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2018

  1. Rollup merge of rust-lang#51178 - GabrielMajeri:os-str-compare, r=Sim…

    …onSapin
    
    Implement PartialEq between &str and OsString
    
    This fixes rust-lang#49854.
    
    It allows equality comparison between `OsString` values and `str` references, such as `os_string == "something"`.
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    12247fd View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#51762 - petrochenkov:oh-hi-mark, r=oli-obk

    hygiene: Implement transparent marks and use them for call-site hygiene in proc-macros
    
    Fixes rust-lang#50050
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    d562bff View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#51828 - kennytm:no-simd-swap-for-mac, r=ale…

    …xcrichton
    
    Do not allow LLVM to increase a TLS's alignment on macOS.
    
    This addresses the various TLS segfault on macOS 10.10.
    
    Fix rust-lang#51794.
    Fix rust-lang#51758.
    Fix rust-lang#50867.
    Fix rust-lang#48866.
    Fix rust-lang#46355.
    Fix rust-lang#44056.
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    8c30769 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#51853 - MajorBreakfast:fix-doc-links, r=cra…

    …mertj
    
    Fix some doc links
    
    The futures crate CI always fails because of these intra doc links. I hope that this will fix this issue.
    
    r? @steveklabnik
    @cramertj
    
    Edit: I added @steveklabnik as reviewer because this PR also adjusts a link in `src/libstd/error.rs`
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    4b6d98d View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#51862 - estebank:lifetime-spans, r=nikomats…

    …akis
    
    Point to lifetime spans on lifetime errors
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    b3f8989 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#51864 - est31:libc_update, r=alexcrichton

    Update liblibc
    
    This updates the libc submodule
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    bea664b View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#51867 - krk:issue-36122, r=petrochenkov

    Require type is sized in wfcheck.check_item_type for externed DSTs, c…
    
    …loses rust-lang#36122
    
    Continuing rust-lang#50126.
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    de85644 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#51883 - estebank:placement-suggestion, r=va…

    …rkor
    
    Suggest correct comparison against negative literal
    
    When parsing as emplacement syntax (`x<-1`), suggest the correct syntax
    for comparison against a negative value (`x< -1`).
    
    Fix rust-lang#45651.
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    2223cc8 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#51890 - Ixrec:patch-3, r=alexcrichton

    Fix inconsequential typo in GlobalAlloc doc example
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    cf957c8 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#51920 - euclio:concrete-type-suggestion, r=…

    …estebank
    
    use literal span for concrete type suggestion
    
    Fixes rust-lang#51874.
    
    r? @estebank
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    b50a6ba View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#51921 - japaric:panic-impl-error, r=nagisa

    improve the error message when `#[panic_implementation]` is missing
    
    closes rust-lang#51341
    
    r? @nagisa
    cc @phil-opp
    Mark-Simulacrum authored Jun 30, 2018
    Configuration menu
    Copy the full SHA
    b7bd4aa View commit details
    Browse the repository at this point in the history