-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Regression from 1.44 to 1.45 #74739
Comments
With beta or nightly this again prints |
struct Foo {
x: i32,
}
fn main() {
let mut foo = Foo { x: 42 };
let x = &mut foo.x;
*x = 13;
let y = foo;
println!("{:?}", (&y).x); //only added this line
println!("{:?}", y.x); //13
} If there is any benefit, it works as expected with this code. |
This is a duplicate of the already fixed #73609 It seems like this bug somehow slipped into beta :/ |
@rust-lang/release Should there be a 1.45.1 with #73609? |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I'm confused. Based on the examples this bug appears to be very impactful, i.e. it should break a lot of code. Yet it made it to stable which, I assume, involves a crater run and independent testing on beta. Is there a subtle condition to this bug that isn't met in most productive code? |
The bug is almost impossible to trigger on real world code. You need all values that are going into the bug to be constant values and there can't be any control flow or function calls in between. |
As far as I know, There is already a |
This comment has been minimized.
This comment has been minimized.
Assigning |
I am happy to include 5fa8b08 in 1.45.1. @oli-obk -- there's some merge conflicts when cherry-picking onto stable, could you provide a commit/PR against stable with the merge conflicts fixed? FWIW, I find the notion of putting warnings or saying "don't use this release" to be something we probably don't want to do right now. We'd basically have to do so for all non-latest Rust versions; they're all "unsupported" and may contain this (or other) problems. We ourselves do not patch more than the latest stable release if CVEs are detected, generally speaking. I would also ask that further discussion about yanking releases and such be directed to an internals thread and not this issue to avoid creating noise while we resolve this bug. |
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This thread has served its purpose, so locking it. |
by the way, this issue was not, technically, a duplicate of #73609. Or at least, the issue described in #73609 only surfaces under conditions witnessed after commit 38bd83d (PR #71911, merged on June 21st) bisected with cargo-bisect-rustc v0.5.2Host triple: x86_64-unknown-linux-gnu cargo bisect-rustc 2020-04-01 --end 2020-06-22 -- run while this issue surfaces under conditions witnessed after commit 3fe4dd2 (PR #71953, merged on May 11th) bisected with cargo-bisect-rustc v0.5.2Host triple: x86_64-unknown-linux-gnu cargo bisect-rustc 2020-05-01 --end 2020-06-01 -- run It does seem like the same patch (PR #73613) fixes both issues; i.e., it seems likely that there is indeed one bug underlying both distinct issues. But the fact that they are distinct issues helps explain why we did not backport the fix to beta way back when. |
…iser add regression test for rust-lang#74739 (mir const-prop bug) Fixes rust-lang#74739
The following MVE prints
42
with rustc 1.45.0 but13
with rustc 1.44.0Initially reported on Stack Overflow.
The text was updated successfully, but these errors were encountered: