forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#66870 - tmiasko:simplify-ty, r=oli-obk
SimplifyArmIdentity only for locals with the same type Fixes rust-lang#66856 Fixes rust-lang#66851
- Loading branch information
Showing
3 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// Checks that `SimplifyArmIdentity` is not applied if enums have incompatible layouts. | ||
// Regression test for issue #66856. | ||
// | ||
// compile-flags: -Zmir-opt-level=2 | ||
|
||
enum Src { | ||
Foo(u8), | ||
Bar, | ||
} | ||
|
||
enum Dst { | ||
Foo(u8), | ||
} | ||
|
||
fn main() { | ||
let e: Src = Src::Foo(0); | ||
let _: Dst = match e { | ||
Src::Foo(x) => Dst::Foo(x), | ||
Src::Bar => Dst::Foo(0), | ||
}; | ||
} | ||
|
||
// END RUST SOURCE | ||
// START rustc.main.SimplifyArmIdentity.before.mir | ||
// fn main() -> () { | ||
// ... | ||
// bb0: { | ||
// StorageLive(_1); | ||
// ((_1 as Foo).0: u8) = const 0u8; | ||
// discriminant(_1) = 0; | ||
// StorageLive(_2); | ||
// _3 = discriminant(_1); | ||
// switchInt(move _3) -> [0isize: bb3, 1isize: bb1, otherwise: bb2]; | ||
// } | ||
// bb1: { | ||
// ((_2 as Foo).0: u8) = const 0u8; | ||
// discriminant(_2) = 0; | ||
// goto -> bb4; | ||
// } | ||
// ... | ||
// bb3: { | ||
// _4 = ((_1 as Foo).0: u8); | ||
// ((_2 as Foo).0: u8) = move _4; | ||
// discriminant(_2) = 0; | ||
// goto -> bb4; | ||
// } | ||
// ... | ||
// } | ||
// END rustc.main.SimplifyArmIdentity.before.mir | ||
// START rustc.main.SimplifyArmIdentity.after.mir | ||
// fn main() -> () { | ||
// ... | ||
// bb0: { | ||
// StorageLive(_1); | ||
// ((_1 as Foo).0: u8) = const 0u8; | ||
// discriminant(_1) = 0; | ||
// StorageLive(_2); | ||
// _3 = discriminant(_1); | ||
// switchInt(move _3) -> [0isize: bb3, 1isize: bb1, otherwise: bb2]; | ||
// } | ||
// bb1: { | ||
// ((_2 as Foo).0: u8) = const 0u8; | ||
// discriminant(_2) = 0; | ||
// goto -> bb4; | ||
// } | ||
// ... | ||
// bb3: { | ||
// _4 = ((_1 as Foo).0: u8); | ||
// ((_2 as Foo).0: u8) = move _4; | ||
// discriminant(_2) = 0; | ||
// goto -> bb4; | ||
// } | ||
// ... | ||
// } | ||
// END rustc.main.SimplifyArmIdentity.after.mir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This used to mis-compile because the mir-opt `SimplifyArmIdentity` | ||
// did not check that the types matched up in the `Ok(r)` branch. | ||
// | ||
// run-pass | ||
// compile-flags: -Zmir-opt-level=2 | ||
|
||
#[derive(Debug, PartialEq, Eq)] | ||
enum SpecialsRes { Res(u64) } | ||
|
||
fn e103() -> SpecialsRes { | ||
if let Ok(r) = "1".parse() { | ||
SpecialsRes::Res(r) | ||
} else { | ||
SpecialsRes::Res(42) | ||
} | ||
} | ||
|
||
fn main() { | ||
assert_eq!(e103(), SpecialsRes::Res(1)); | ||
} |