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

Closed
wants to merge 12 commits into from

Commits on Oct 3, 2024

  1. add direnv to gitignore

    Orion Gonzalez committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    3a0ed0c View commit details
    Browse the repository at this point in the history
  2. add nix files to gitignore

    Orion Gonzalez committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    510e262 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    83d0d9f View commit details
    Browse the repository at this point in the history
  4. Avoid ICE in coverage builds with bad #[coverage(..)] attributes

    This code can sometimes witness malformed coverage attributes in builds that
    are going to fail, so use `span_delayed_bug` to avoid an inappropriate ICE in
    that case.
    Zalathar committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    8e382ba View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d47e388 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    417b55b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fd35e82 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#131176 - dev-ardi:gitignore, r=Noratrieb

    .gitignore files for nix
    
    This adds support for direnv and nix flakes / nix shell. I'm not sure if we should have a working nix configuration though.
    
    r? `@noratrieb`
    matthiaskrgr authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    bc36bfe View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#131187 - Zalathar:bad-attr-ice, r=jieyouxu

    Avoid ICE in coverage builds with bad `#[coverage(..)]` attributes
    
    This code can sometimes witness malformed coverage attributes in builds that are going to fail, so use `span_delayed_bug` to avoid an inappropriate ICE in that case.
    
    Fixes rust-lang#127880.
    matthiaskrgr authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    8e39b29 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#131192 - ismailarilik:handle-potential-quer…

    …y-instability-lint-for-rustc-query-impl, r=compiler-errors
    
    Handle `rustc_query_impl` cases of `rustc::potential_query_instability` lint
    
    This PR removes `#![allow(rustc::potential_query_instability)]` line from [`compiler/rustc_query_impl/src/lib.rs`](https://github.com/rust-lang/rust/blob/master/compiler/rustc_query_impl/src/lib.rs#L5) <s>and converts `FxHash{Map,Set}` types into `FxIndex{Map,Set}` to suppress lint errors</s> (was not necessary for this PR).
    
    A somewhat tracking issue: rust-lang#84447
    
    r? `@compiler-errors`
    matthiaskrgr authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    22d4ccf View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#131197 - EFanZh:avoid-emptyness-check-in-pe…

    …ekmut-pop, r=Amanieu
    
    Avoid emptiness check in `PeekMut::pop`
    
    This PR avoids an unnecessary emptiness check in `PeekMut::pop` by replacing `Option::unwrap` with `Option::unwrap_unchecked`.
    matthiaskrgr authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    36b7052 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#131203 - clubby789:jumpthreading-not, r=com…

    …piler-errors
    
    JumpThreading: fix bitwise not on non-booleans
    
    Fixes rust-lang#131195
    
    Alternative to rust-lang#131201
    matthiaskrgr authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    1ce9d8d View commit details
    Browse the repository at this point in the history