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

Closed
wants to merge 28 commits into from
Closed

Commits on Dec 12, 2019

  1. Configuration menu
    Copy the full SHA
    0f47327 View commit details
    Browse the repository at this point in the history
  2. Fix signature of __wasilibc_find_relpath

    Looks like this function changed upstream, so it needs to be adjusted
    for when used by libstd.
    alexcrichton committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    641ccd5 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2019

  1. Configuration menu
    Copy the full SHA
    8f3021b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    57959b2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8f59902 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ee233c0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    99e132d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1122404 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    caa7c99 View commit details
    Browse the repository at this point in the history
  8. Bless modified tests

    ecstatic-morse committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    3325671 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2add77d View commit details
    Browse the repository at this point in the history
  10. Improve comment

    ecstatic-morse committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    a8e997c View commit details
    Browse the repository at this point in the history
  11. Look for "unstable feature" error code in test

    Conditionals and loops now have unstable features, and `feature_err` has
    its own error code. I think that `feature_err` should take an error code
    as a parameter, but don't have the energy to make this change throughout
    the codebase. Also, the error code system may be torn out entirely.
    ecstatic-morse committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    a2a0774 View commit details
    Browse the repository at this point in the history
  12. Fix grammar in test description

    Co-Authored-By: Mazdak Farrokhzad <[email protected]>
    ecstatic-morse and Centril committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    b3aecd0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2b5ae1c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    80581be View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    34ce0ba View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    598bed6 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    029725f View commit details
    Browse the repository at this point in the history
  18. Document Features::enabled

    Co-Authored-By: Mazdak Farrokhzad <[email protected]>
    ecstatic-morse and Centril committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    0f0bfc9 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    faa52d1 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b65c6ec View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2019

  1. Configuration menu
    Copy the full SHA
    f5e9bda View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#67151 - petrochenkov:docomm, r=estebank

    doc comments: Less attribute mimicking
    
    Make sure doc comments are not converted into intermediate meta-items, or not mixed with `doc(inline)` or something like that.
    
    Follow-up to rust-lang#65750.
    Centril authored Dec 14, 2019
    Configuration menu
    Copy the full SHA
    d720440 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#67216 - ecstatic-morse:const-loop, r=oli-obk

    Enable `loop` and `while` in constants behind a feature flag
    
    This PR is an initial implementation of rust-lang#52000. It adds a `const_loop` feature gate, which allows `while` and `loop` expressions through both HIR and MIR const-checkers if enabled. `for` expressions remain forbidden by the HIR const-checker, since they desugar to a call to `IntoIterator::into_iter`, which will be rejected anyways.
    
    `while` loops also require [`#![feature(const_if_match)]`](rust-lang#66507), since they have a conditional built into them. The diagnostics from the HIR const checker will suggest this to the user.
    
    r? @oli-obk
    cc @rust-lang/wg-const-eval
    Centril authored Dec 14, 2019
    Configuration menu
    Copy the full SHA
    0e2fb73 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#67255 - tuxillo:remove-i686-unknown-dragonf…

    …ly, r=alexcrichton
    
    Remove i686-unknown-dragonfly target
    
    DragonFly BSD removed support for i386 a while ago. It only supports x86_64 right now.
    Centril authored Dec 14, 2019
    Configuration menu
    Copy the full SHA
    393ddd6 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#67267 - alexcrichton:update-wasi-libc, r=Dy…

    …lan-DPC
    
    Fix signature of `__wasilibc_find_relpath`
    
    Looks like this function changed upstream, so it needs to be adjusted
    for when used by libstd.
    Centril authored Dec 14, 2019
    Configuration menu
    Copy the full SHA
    18cbf24 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#67282 - pjw91:patch-1, r=Dylan-DPC

    Fix example code of OpenOptions::open
    
    The example didn't set the access mode flag, which resulted in an `Err(InvalidInput)`.
    
    r? @steveklabnik
    Centril authored Dec 14, 2019
    Configuration menu
    Copy the full SHA
    389aa5f View commit details
    Browse the repository at this point in the history