summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir')
-rw-r--r--tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir46
1 files changed, 0 insertions, 46 deletions
diff --git a/tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir b/tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir
deleted file mode 100644
index 7dc4f7ab1..000000000
--- a/tests/mir-opt/while_storage.while_loop.PreCodegen.after.panic-unwind.mir
+++ /dev/null
@@ -1,46 +0,0 @@
-// MIR for `while_loop` after PreCodegen
-
-fn while_loop(_1: bool) -> () {
- debug c => _1;
- let mut _0: ();
- let mut _2: bool;
- let mut _3: bool;
-
- bb0: {
- goto -> bb1;
- }
-
- bb1: {
- StorageLive(_2);
- _2 = get_bool(_1) -> [return: bb2, unwind continue];
- }
-
- bb2: {
- switchInt(move _2) -> [0: bb7, otherwise: bb3];
- }
-
- bb3: {
- StorageLive(_3);
- _3 = get_bool(_1) -> [return: bb4, unwind continue];
- }
-
- bb4: {
- switchInt(move _3) -> [0: bb5, otherwise: bb6];
- }
-
- bb5: {
- StorageDead(_3);
- StorageDead(_2);
- goto -> bb1;
- }
-
- bb6: {
- StorageDead(_3);
- goto -> bb7;
- }
-
- bb7: {
- StorageDead(_2);
- return;
- }
-}