diff options
Diffstat (limited to '')
-rw-r--r-- | tests/mir-opt/simplify_if.main.SimplifyConstCondition-after-const-prop.panic-unwind.diff | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/mir-opt/simplify_if.main.SimplifyConstCondition-after-const-prop.panic-unwind.diff b/tests/mir-opt/simplify_if.main.SimplifyConstCondition-after-const-prop.panic-unwind.diff new file mode 100644 index 000000000..81903c64d --- /dev/null +++ b/tests/mir-opt/simplify_if.main.SimplifyConstCondition-after-const-prop.panic-unwind.diff @@ -0,0 +1,33 @@ +- // MIR for `main` before SimplifyConstCondition-after-const-prop ++ // MIR for `main` after SimplifyConstCondition-after-const-prop + + fn main() -> () { + let mut _0: (); + let mut _1: bool; + let _2: (); + + bb0: { + StorageLive(_1); + _1 = const false; +- switchInt(const false) -> [0: bb3, otherwise: bb1]; ++ goto -> bb3; + } + + bb1: { + _2 = noop() -> [return: bb2, unwind continue]; + } + + bb2: { + goto -> bb4; + } + + bb3: { + goto -> bb4; + } + + bb4: { + StorageDead(_1); + return; + } + } + |