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 6 pull requests #92085

Closed
wants to merge 15 commits into from

Commits on Dec 4, 2021

  1. Remove Select trait

    calebzulawski committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    d9f82f9 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2021

  1. Merge portable-simd#207 - ./feature/simplify-select

    Remove Select trait
    
    I realized that our `select` implementation predated `Simd` being generic over element type, and we don't really need the `Select` trait at all. The function signature is much simpler now (generic over element type, rather than over the entire vector). This did require changing mask select to be a different function, but I think that's fine considering they're not necessarily vectors.
    workingjubilee authored Dec 5, 2021
    Configuration menu
    Copy the full SHA
    81484a3 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

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

Commits on Dec 14, 2021

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

Commits on Dec 17, 2021

  1. Configuration menu
    Copy the full SHA
    5c77116 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23c172f View commit details
    Browse the repository at this point in the history
  3. Set RUST_BACKTRACE=0 when running location-detail tests

    This ensures that the output does not depend on environment variables
    set in the shell.
    Aaron1011 committed Dec 17, 2021
    Configuration menu
    Copy the full SHA
    2699def View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    afdd356 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2021

  1. Write code directly instead of using FromIterator

    The FromIterator impl made the code much harder to understand. The types
    don't make sense until you realize there's a custom FromIterator impl.
    camelid authored and jyn514 committed Dec 18, 2021
    Configuration menu
    Copy the full SHA
    7f383c3 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#91894 - pitaj:91867-incremental, r=Aaron1011

    Remove `in_band_lifetimes` from `rustc_incremental`
    
    rust-lang#91867
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    b19609b View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#92020 - Folyd:stream-unpin, r=m-ou-se

    Remove P: Unpin bound on impl Stream for Pin
    
    Similar to rust-lang#81363.
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    b7cd8bf View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#92028 - petrochenkov:psimd, r=Mark-Simulacrum

    Sync portable-simd to fix libcore build for AVX-512 enabled targets
    
    Fixes rust-lang#91484 (comment)
    cc `@workingjubilee`
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    c2f1a62 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#92047 - Aaron1011:location-detail-backtrace…

    …, r=Mark-Simulacrum
    
    Set `RUST_BACKTRACE=0` when running location-detail tests
    
    This ensures that the output does not depend on environment variables
    set in the shell.
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    e4bb88e View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#92050 - r00ster91:patch-5, r=camelid

    Add a space and 2 grave accents
    
    I only noticed this because I have this implementation copy pasted in some places in my code and I really can't wait for this to be stabilized...
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    9baef7b View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#92082 - jyn514:remove-from-iterator, r=jyn514

    rustdoc: Write doc-comments directly instead of using FromIterator
    
    The FromIterator impl made the code much harder to understand. The types
    don't make sense until you realize there's a custom FromIterator impl.
    
    This is the first commit from rust-lang#91305; since `@camelid` wrote it originally I don't feel bad unilaterally approving it.
    
    r? `@ghost`
    `@bors` r+
    
    Note that this will conflict with rust-lang#92078.
    matthiaskrgr authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    50ca851 View commit details
    Browse the repository at this point in the history