diff options
Diffstat (limited to 'tests/mir-opt/switch_to_self.test.MatchBranchSimplification.diff')
-rw-r--r-- | tests/mir-opt/switch_to_self.test.MatchBranchSimplification.diff | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/mir-opt/switch_to_self.test.MatchBranchSimplification.diff b/tests/mir-opt/switch_to_self.test.MatchBranchSimplification.diff new file mode 100644 index 000000000..c0b599e06 --- /dev/null +++ b/tests/mir-opt/switch_to_self.test.MatchBranchSimplification.diff @@ -0,0 +1,19 @@ +- // MIR for `test` before MatchBranchSimplification ++ // MIR for `test` after MatchBranchSimplification + + fn test(_1: bool) -> () { + let mut _0: (); + + bb0: { + goto -> bb1; + } + + bb1: { + switchInt(_1) -> [0: bb1, otherwise: bb2]; + } + + bb2: { + switchInt(_1) -> [0: bb1, otherwise: bb2]; + } + } + |