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

Always capture slice when pattern requires checking the length #111831

Merged
merged 1 commit into from
May 26, 2023

Conversation

clubby789
Copy link
Contributor

Fixes #111751

cc @zirconium-n, I see you were assigned to this but I've fixed some similar issues in the past and had an idea on how to investigate this.

@rustbot
Copy link
Collaborator

rustbot commented May 21, 2023

r? @eholk

(rustbot has picked a reviewer for you, use r? to override)

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels May 21, 2023
@rust-cloud-vms rust-cloud-vms bot force-pushed the capture-slice-pat branch from 981cdea to f5ae107 Compare May 22, 2023 09:24
@rust-cloud-vms rust-cloud-vms bot force-pushed the capture-slice-pat branch from f5ae107 to 403dce4 Compare May 22, 2023 10:00
@zirconium-n
Copy link
Contributor

Nice. I didn't have time during weekend.

@rust-cloud-vms rust-cloud-vms bot force-pushed the capture-slice-pat branch from 403dce4 to e6bab70 Compare May 25, 2023 11:27
@rust-cloud-vms rust-cloud-vms bot force-pushed the capture-slice-pat branch from e6bab70 to ace794c Compare May 25, 2023 17:08
@cjgillot
Copy link
Contributor

Thanks!
@bors r+

@bors
Copy link
Collaborator

bors commented May 25, 2023

📌 Commit ace794c has been approved by cjgillot

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels May 25, 2023
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this pull request May 25, 2023
…illot

Always capture slice when pattern requires checking the length

Fixes rust-lang#111751

cc `@zirconium-n,` I see you were assigned to this but I've fixed some similar issues in the past and had an idea on how to investigate this.
bors added a commit to rust-lang-ci/rust that referenced this pull request May 25, 2023
…mpiler-errors

Rollup of 7 pull requests

Successful merges:

 - rust-lang#107522 (Add Median of Medians fallback to introselect)
 - rust-lang#111152 (update `pulldown-cmark` to `0.9.3`)
 - rust-lang#111757 (Consider lint check attributes on match arms)
 - rust-lang#111831 (Always capture slice when pattern requires checking the length)
 - rust-lang#111929 (Don't print newlines in APITs)
 - rust-lang#111945 (Migrate GUI colors test to original CSS color format)
 - rust-lang#111950 (Remove ExpnKind::Inlined.)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit dbdb509 into rust-lang:master May 26, 2023
@rustbot rustbot added this to the 1.71.0 milestone May 26, 2023
if matches!((lhs, wild, rhs), (&[], Some(_), &[]))
// Arrays have a statically known size, so
// there is no need to read their length
|| discr_place.place.base_ty.is_array()
Copy link
Member

@BoxyUwU BoxyUwU Jun 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this cause us to emit reads when matching on &[T; N]? If so that might be the cause of #112607

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't matter if this is the cause, gce is free to be broken

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does yes. I'll fix it now, since this is definitely incorrect right now

bors added a commit to rust-lang-ci/rust that referenced this pull request Jun 18, 2023
…gillot

Don't capture `&[T; N]` when contents isn't read

Fixes the check in rust-lang#111831
Fixes rust-lang#112607, although I decided to test the root cause rather than including the example in the issue as a test.
cc `@BoxyUwU`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Closure doesn't capture match scrutinee in case of slice pattern
9 participants