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

Closed
wants to merge 11 commits into from
Closed

Commits on Jun 11, 2019

  1. Pass LLVM linker flags to librustc_llvm build

    Some -L and -l flags may be needed even when building librustc_llvm,
    for example when using static libc++ on Linux we may need to manually
    specify the library search path and -ldl -lpthread as additional link
    dependencies. We pass LLVM linker flags from config to librustc_llvm
    build to make sure these cases are handled.
    petrhosek committed Jun 11, 2019
    Configuration menu
    Copy the full SHA
    48f205d View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2019

  1. Add ui test for issue 51301

    tesuji committed Jun 13, 2019
    Configuration menu
    Copy the full SHA
    8a5e1ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a17e918 View commit details
    Browse the repository at this point in the history
  3. typeck: Fix ICE for blocks in repeat expr count.

    This commit extends the work in rust-lang#61698 to get the `DefId` of const
    parameters from block that resolve to a const parameter (as well as
    const parameters directly, as it was previously).
    davidtwco committed Jun 13, 2019
    Configuration menu
    Copy the full SHA
    bc36aab View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2019

  1. Configuration menu
    Copy the full SHA
    40743ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0522b66 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#61704 - petrhosek:llvm-linker-flags, r=alex…

    …crichton
    
    Pass LLVM linker flags to librustc_llvm build
    
    Some -L and -l flags may be needed even when building librustc_llvm,
    for example when using static libc++ on Linux we may need to manually
    specify the library search path and -ldl -lpthread as additional link
    dependencies. We pass LLVM linker flags from config to librustc_llvm
    build to make sure these cases are handled.
    Centril authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    58e6601 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#61792 - lzutao:issue-51301, r=Centril

    Add ui test for issue 51301
    
    Closes rust-lang#51301
    Centril authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    6c93ad0 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#61803 - Centril:write_resolution, r=petroch…

    …enkov
    
    typeck: small refactoring, add 'fn write_resolution'
    Centril authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    d22a73e View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#61805 - davidtwco:ice-const-generic-repeat-…

    …expr-count-sequel, r=varkor
    
    typeck: Fix ICE for blocks in repeat expr count.
    
    Fixes rust-lang#61336 (again). This PR fixes an ICE that occured when a block expression resolving to a const generic was used for the count of an array repeat expression.
    
    r? @varkor
    Centril authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    9892367 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#61818 - tmandry:issue-60709-test, r=cramertj

    Issue rust-lang#60709 test
    
    Adds a test for rust-lang#60709, which was fixed as part of rust-lang#59897.
    
    r? @cramertj
    Centril authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    9b91bec View commit details
    Browse the repository at this point in the history