Skip to content

Conversation

@pull
Copy link

@pull pull bot commented Nov 7, 2025

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.4)

Can you help keep this open source service alive? 💖 Please sponsor : )

GrigorenkoPV and others added 27 commits October 23, 2025 23:43
Use binary literals instead of hex literals.
This caused Emacs to throw errors when opening files.

Introduced in 3fe3edb.
Offload device

LLVM's offload functionality usually expects an extra dyn_ptr argument. We could avoid it,b ut likely gonna need it very soon in one of the follow-up PRs (e.g. to request shared memory). So we might as well already add it.

This PR adds a %dyn_ptr ptr to GPUKernel ABI functions, if the offload feature is enabled.

WIP

r? ```@ghost```
…Amanieu

Stabilize `vec_deque_pop_if`

Tracking issue: #135889
Closes #135889
Also fixes a typo mentioned in #135889 (comment)

FCP: #135889 (comment)

`@rustbot` label -T-libs +T-libs-api +needs-fcp +S-waiting-on-fcp

r? t-libs-api
Early return if span is from expansion so we dont get empty span and ice later on

Fixes #147255

The problem original was from that stmt.span was from expansion and it span was bigger than right part which is block.span, so it causes empty span and panic later on, I decided to add checks for both of them to be on the safe side

r? `@fmease` (you were in discussion on this issue so I decided to assign you, feel free to reroll)
btree: cleanup difference, intersection, is_subset
…sts, r=tgross35

style: Use binary literals instead of hex literals in doctests for `highest_one` and `lowest_one`

For example, I think it's easier to understand that the index of the highest bit set to one in `16` is `4` as `0b10000` than as `0x10`.

```rust
assert_eq!(0x10_u64.highest_one(), Some(4));
```

Instead of:

```rust
assert_eq!(0b10000_u64.highest_one(), Some(4));
```

#145203
Add typo suggestion for a misspelt Cargo environment variable

Fixes #148439
…edence, r=hkBst,Kivooeo

Fix incorrect precedence caused by range expression

Fixes #148344
The testcase `tests/ui/feature-gates/feature-gate-new_range` is also fixed.
Fix mismatched brackets in generated .dir-locals.el

This caused Emacs to throw errors when opening files.

Introduced in 3fe3edb.
…, r=chenyukang

fix dev guide link in rustc_query_system/dep_graph/README.md
…t-slice, r=m-ou-se

core docs: add notes about availability of `Atomic*::from_mut_slice`

See #76314 (comment)

r? libs-api
…bini

Backport 1.91.1 relnotes to main

Backport of the release notes from #148593 to the main branch. This should land before Monday so that the automation creates the GitHub release.
Sync str::rsplit_once example with str::split_once

This adds `"cfg=".rsplit_once('=')` case to `rsplit_once` example, bringing it in sync with example for `split_once`. For consistency and to make life easier for ones who want to ensure bahaviour of this specific edge case.
Rollup of 12 pull requests

Successful merges:

 - #145768 (Offload device)
 - #145992 (Stabilize `vec_deque_pop_if`)
 - #147416 (Early return if span is from expansion so we dont get empty span and ice later on)
 - #147808 (btree: cleanup difference, intersection, is_subset)
 - #148520 (style: Use binary literals instead of hex literals in doctests for `highest_one` and `lowest_one`)
 - #148559 (Add typo suggestion for a misspelt Cargo environment variable)
 - #148567 (Fix incorrect precedence caused by range expression)
 - #148570 (Fix mismatched brackets in generated .dir-locals.el)
 - #148575 (fix dev guide link in rustc_query_system/dep_graph/README.md)
 - #148578 (core docs: add notes about availability of `Atomic*::from_mut_slice`)
 - #148603 (Backport 1.91.1 relnotes to main)
 - #148609 (Sync str::rsplit_once example with str::split_once)

r? `@ghost`
`@rustbot` modify labels: rollup
Liveness: Cache the set of string constants for suggestions.

Even on a slow diagnostic path, listing all the constants in MIR can be expensive, so cache it.
@pull pull bot locked and limited conversation to collaborators Nov 7, 2025
@pull pull bot added the ⤵️ pull label Nov 7, 2025
@pull pull bot merged commit 9606412 into relaxcn:master Nov 7, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.