summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff')
-rw-r--r--tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff b/tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff
new file mode 100644
index 000000000..6025abb73
--- /dev/null
+++ b/tests/mir-opt/simplify_match.main.ConstProp.panic-abort.diff
@@ -0,0 +1,30 @@
+- // MIR for `main` before ConstProp
++ // MIR for `main` after ConstProp
+
+ fn main() -> () {
+ let mut _0: ();
+ let mut _1: bool;
+ let _2: bool;
+ scope 1 {
+ debug x => _2;
+ }
+
+ bb0: {
+ _2 = const false;
+- switchInt(_2) -> [0: bb1, otherwise: bb2];
++ switchInt(const false) -> [0: bb1, otherwise: bb2];
+ }
+
+ bb1: {
+ goto -> bb3;
+ }
+
+ bb2: {
+ _0 = noop() -> [return: bb3, unwind unreachable];
+ }
+
+ bb3: {
+ return;
+ }
+ }
+