Fix #76803
Check that the variant index matches the target value from the SwitchInt we came from
This commit is contained in:
parent
cad050b002
commit
738ed9b5ec
3 changed files with 55 additions and 44 deletions
|
|
@ -8,22 +8,20 @@
|
|||
|
||||
bb0: {
|
||||
_2 = discriminant(_1); // scope 0 at $DIR/76803_regression.rs:12:9: 12:16
|
||||
- switchInt(move _2) -> [0_isize: bb2, otherwise: bb1]; // scope 0 at $DIR/76803_regression.rs:12:9: 12:16
|
||||
+ goto -> bb1; // scope 0 at $DIR/76803_regression.rs:12:9: 12:16
|
||||
switchInt(move _2) -> [0_isize: bb2, otherwise: bb1]; // scope 0 at $DIR/76803_regression.rs:12:9: 12:16
|
||||
}
|
||||
|
||||
bb1: {
|
||||
_0 = move _1; // scope 0 at $DIR/76803_regression.rs:13:14: 13:15
|
||||
- goto -> bb3; // scope 0 at $DIR/76803_regression.rs:11:5: 14:6
|
||||
+ goto -> bb2; // scope 0 at $DIR/76803_regression.rs:11:5: 14:6
|
||||
goto -> bb3; // scope 0 at $DIR/76803_regression.rs:11:5: 14:6
|
||||
}
|
||||
|
||||
bb2: {
|
||||
- discriminant(_0) = 1; // scope 0 at $DIR/76803_regression.rs:12:20: 12:27
|
||||
- goto -> bb3; // scope 0 at $DIR/76803_regression.rs:11:5: 14:6
|
||||
- }
|
||||
-
|
||||
- bb3: {
|
||||
discriminant(_0) = 1; // scope 0 at $DIR/76803_regression.rs:12:20: 12:27
|
||||
goto -> bb3; // scope 0 at $DIR/76803_regression.rs:11:5: 14:6
|
||||
}
|
||||
|
||||
bb3: {
|
||||
return; // scope 0 at $DIR/76803_regression.rs:15:2: 15:2
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,24 +13,27 @@
|
|||
|
||||
bb0: {
|
||||
_2 = discriminant(_1); // scope 0 at $DIR/simplify-arm.rs:11:9: 11:16
|
||||
switchInt(move _2) -> [0_isize: bb1, 1_isize: bb3, otherwise: bb2]; // scope 0 at $DIR/simplify-arm.rs:11:9: 11:16
|
||||
- switchInt(move _2) -> [0_isize: bb1, 1_isize: bb3, otherwise: bb2]; // scope 0 at $DIR/simplify-arm.rs:11:9: 11:16
|
||||
+ goto -> bb1; // scope 0 at $DIR/simplify-arm.rs:11:9: 11:16
|
||||
}
|
||||
|
||||
bb1: {
|
||||
discriminant(_0) = 0; // scope 0 at $DIR/simplify-arm.rs:12:17: 12:21
|
||||
goto -> bb4; // scope 0 at $DIR/simplify-arm.rs:10:5: 13:6
|
||||
}
|
||||
|
||||
bb2: {
|
||||
unreachable; // scope 0 at $DIR/simplify-arm.rs:10:11: 10:12
|
||||
}
|
||||
|
||||
bb3: {
|
||||
- discriminant(_0) = 0; // scope 0 at $DIR/simplify-arm.rs:12:17: 12:21
|
||||
- goto -> bb4; // scope 0 at $DIR/simplify-arm.rs:10:5: 13:6
|
||||
- }
|
||||
-
|
||||
- bb2: {
|
||||
- unreachable; // scope 0 at $DIR/simplify-arm.rs:10:11: 10:12
|
||||
- }
|
||||
-
|
||||
- bb3: {
|
||||
_0 = move _1; // scope 1 at $DIR/simplify-arm.rs:11:20: 11:27
|
||||
goto -> bb4; // scope 0 at $DIR/simplify-arm.rs:10:5: 13:6
|
||||
- goto -> bb4; // scope 0 at $DIR/simplify-arm.rs:10:5: 13:6
|
||||
+ goto -> bb2; // scope 0 at $DIR/simplify-arm.rs:10:5: 13:6
|
||||
}
|
||||
|
||||
bb4: {
|
||||
- bb4: {
|
||||
+ bb2: {
|
||||
return; // scope 0 at $DIR/simplify-arm.rs:14:2: 14:2
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue