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 7 pull requests #61622

Merged
merged 19 commits into from
Jun 7, 2019
Merged

Rollup of 7 pull requests #61622

merged 19 commits into from
Jun 7, 2019

Commits on Jun 4, 2019

  1. Remove asterisk suggestion for move errors in borrowck

    As per issue rust-lang#54985 removes the not useful suggestion to remove asterisk in
    move errors. Includes minor changes to tests in the `ui` suite to account
    for the removed suggestion.
    kungfukennyg committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    de677b9 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2019

  1. [const-prop] Fix ICE when casting function pointers

    This fixes an ICE when building libcore with `-Z mir-opt-level=3`.
    wesleywiser committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    529b94e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f4d94b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e50e01 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dee05ab View commit details
    Browse the repository at this point in the history
  5. ci: Disable LLVM/debug assertions for asmjs builder

    This shaves of 50 minutes of cycle time on Azure and will likely also
    save a significant chunk of time on Travis. The assertions here aren't
    really buying us much over other builders with assertions already
    enabled, so let's disable them for this builder.
    
    cc rust-lang#61185
    alexcrichton committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    7d1f762 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9a49841 View commit details
    Browse the repository at this point in the history
  7. Bless test output

    wesleywiser committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    459e37b View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2019

  1. libcore/pin: Minor grammar corrections for module documentation

    This is by no means exhaustive, but I noticed a few grammatical errors
    when reading the documentation, and decided just to push these.
    
    Some standard rules/guidelines I followed:
    
     * Do not split infinitives, ie "not to move" instead of "to not move"
    
     * Do not use "since" when you want to say "because" or "as" - the word
       "since" has a temporal meaning
    
    In addition:
    
     * Fix a small typo: "Similarily" should be "Similarly"
    
     * Delete double-spaces after full stop
    Thomas Bracht Laumann Jespersen committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    fb61b85 View commit details
    Browse the repository at this point in the history
  2. make the backtrace field of EvalError private

    This also makes sure people don't contruct these the wrong way
    RalfJung committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    625763f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    524f146 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f37537 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#61332 - kennethbgoodin:borrowck-remove-aste…

    …risk-suggestion, r=matthewjasper
    
    Remove asterisk suggestion for move errors in borrowck
    
    As per the decision in rust-lang#54985 completely removes the suggestion to add an asterisk when checking move errors. I believe I've preserved the correct behavior with the "consider borrowing here" branch of the original match arm, but I'm not positive on that.
    
    This is my first PR to rustc so any feedback is greatly appreciated. Thanks.
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    9ab654c View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#61532 - wesleywiser:const_prop_more, r=oli-obk

    [const-prop] Support Rvalue::{Ref,Len} and Deref
    
    Also fixes an ICE I found in testing.
    
    r? @oli-obk
    
    ~~The final commit is just for a perf run. I'll remove it after that is completed.~~
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    de6bc12 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#61586 - alexcrichton:asmjs-no-assertions, r…

    …=pietroalbini
    
    ci: Disable LLVM/debug assertions for asmjs builder
    
    This shaves of 50 minutes of cycle time on Azure and will likely also
    save a significant chunk of time on Travis. The assertions here aren't
    really buying us much over other builders with assertions already
    enabled, so let's disable them for this builder.
    
    cc rust-lang#61185
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    b4c6c6f View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#61599 - laumann:pin-docs-minor-edits, r=Cen…

    …tril
    
    libcore/pin: Minor grammar corrections for module documentation
    
    This is by no means exhaustive, but I noticed a few grammatical errors
    when reading the documentation, and decided just to push these.
    
    Some standard rules/guidelines I followed:
    
     * Do not split infinitives, ie "not to move" instead of "to not move"
    
     * Do not use "since" when you want to say "because" or "as" - the word
       "since" has a temporal meaning
    
    In addition:
    
     * Fix a small typo: "Similarily" should be "Similarly"
    
     * Delete double-spaces after full stop
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    5557bd0 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#61603 - Goirad:increase-sgx-heapsize, r=ale…

    …xcrichton
    
    Increases heap size available during testing for SGX
    
    PR [61540](rust-lang#61540) causes at least one test to fail when run for the SGX platform due to lack of memory. This PR increases the heapsize available during tests, which is a good thing regardless of the status of that PR.
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    06a1df4 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#61605 - GuillaumeGomez:const-generic-displa…

    …y, r=varkor
    
    Fix slice const generic length display
    
    Fixes rust-lang#61487.
    
    r? @varkor
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    9bbdc40 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#61618 - RalfJung:error, r=oli-obk

    make the backtrace field of EvalError private
    
    This also makes sure people don't contruct these the wrong way (i.e., not through the `From` instance).
    
    r? @oli-obk
    Centril committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    b9c752b View commit details
    Browse the repository at this point in the history