summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir')
-rw-r--r--src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir b/src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir
new file mode 100644
index 000000000..a5e7d6afd
--- /dev/null
+++ b/src/test/mir-opt/while_storage.while_loop.PreCodegen.after.mir
@@ -0,0 +1,64 @@
+// MIR for `while_loop` after PreCodegen
+
+fn while_loop(_1: bool) -> () {
+ debug c => _1; // in scope 0 at $DIR/while-storage.rs:+0:15: +0:16
+ let mut _0: (); // return place in scope 0 at $DIR/while-storage.rs:+0:24: +0:24
+ let mut _2: bool; // in scope 0 at $DIR/while-storage.rs:+1:11: +1:22
+ let mut _3: bool; // in scope 0 at $DIR/while-storage.rs:+1:20: +1:21
+ let mut _4: bool; // in scope 0 at $DIR/while-storage.rs:+2:12: +2:23
+ let mut _5: bool; // in scope 0 at $DIR/while-storage.rs:+2:21: +2:22
+
+ bb0: {
+ goto -> bb1; // scope 0 at $DIR/while-storage.rs:+1:5: +5:6
+ }
+
+ bb1: {
+ StorageLive(_2); // scope 0 at $DIR/while-storage.rs:+1:11: +1:22
+ StorageLive(_3); // scope 0 at $DIR/while-storage.rs:+1:20: +1:21
+ _3 = _1; // scope 0 at $DIR/while-storage.rs:+1:20: +1:21
+ _2 = get_bool(move _3) -> bb2; // scope 0 at $DIR/while-storage.rs:+1:11: +1:22
+ // mir::Constant
+ // + span: $DIR/while-storage.rs:10:11: 10:19
+ // + literal: Const { ty: fn(bool) -> bool {get_bool}, val: Value(<ZST>) }
+ }
+
+ bb2: {
+ StorageDead(_3); // scope 0 at $DIR/while-storage.rs:+1:21: +1:22
+ switchInt(move _2) -> [false: bb7, otherwise: bb3]; // scope 0 at $DIR/while-storage.rs:+1:11: +1:22
+ }
+
+ bb3: {
+ StorageLive(_4); // scope 0 at $DIR/while-storage.rs:+2:12: +2:23
+ StorageLive(_5); // scope 0 at $DIR/while-storage.rs:+2:21: +2:22
+ _5 = _1; // scope 0 at $DIR/while-storage.rs:+2:21: +2:22
+ _4 = get_bool(move _5) -> bb4; // scope 0 at $DIR/while-storage.rs:+2:12: +2:23
+ // mir::Constant
+ // + span: $DIR/while-storage.rs:11:12: 11:20
+ // + literal: Const { ty: fn(bool) -> bool {get_bool}, val: Value(<ZST>) }
+ }
+
+ bb4: {
+ StorageDead(_5); // scope 0 at $DIR/while-storage.rs:+2:22: +2:23
+ switchInt(move _4) -> [false: bb6, otherwise: bb5]; // scope 0 at $DIR/while-storage.rs:+2:12: +2:23
+ }
+
+ bb5: {
+ StorageDead(_4); // scope 0 at $DIR/while-storage.rs:+4:9: +4:10
+ goto -> bb8; // scope 0 at no-location
+ }
+
+ bb6: {
+ StorageDead(_4); // scope 0 at $DIR/while-storage.rs:+4:9: +4:10
+ StorageDead(_2); // scope 0 at $DIR/while-storage.rs:+5:5: +5:6
+ goto -> bb1; // scope 0 at $DIR/while-storage.rs:+1:5: +5:6
+ }
+
+ bb7: {
+ goto -> bb8; // scope 0 at no-location
+ }
+
+ bb8: {
+ StorageDead(_2); // scope 0 at $DIR/while-storage.rs:+5:5: +5:6
+ return; // scope 0 at $DIR/while-storage.rs:+6:2: +6:2
+ }
+}