summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff')
-rw-r--r--tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff b/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff
index de4235c9e..083515aeb 100644
--- a/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff
+++ b/tests/mir-opt/if_condition_int.dont_opt_bool.SimplifyComparisonIntegral.diff
@@ -2,29 +2,29 @@
+ // MIR for `dont_opt_bool` after SimplifyComparisonIntegral
fn dont_opt_bool(_1: bool) -> u32 {
- debug x => _1; // in scope 0 at $DIR/if_condition_int.rs:+0:18: +0:19
- let mut _0: u32; // return place in scope 0 at $DIR/if_condition_int.rs:+0:30: +0:33
- let mut _2: bool; // in scope 0 at $DIR/if_condition_int.rs:+1:8: +1:9
+ debug x => _1;
+ let mut _0: u32;
+ let mut _2: bool;
bb0: {
- StorageLive(_2); // scope 0 at $DIR/if_condition_int.rs:+1:8: +1:9
- _2 = _1; // scope 0 at $DIR/if_condition_int.rs:+1:8: +1:9
- switchInt(move _2) -> [0: bb2, otherwise: bb1]; // scope 0 at $DIR/if_condition_int.rs:+1:8: +1:9
+ StorageLive(_2);
+ _2 = _1;
+ switchInt(move _2) -> [0: bb2, otherwise: bb1];
}
bb1: {
- _0 = const 0_u32; // scope 0 at $DIR/if_condition_int.rs:+1:12: +1:13
- goto -> bb3; // scope 0 at $DIR/if_condition_int.rs:+1:5: +1:26
+ _0 = const 0_u32;
+ goto -> bb3;
}
bb2: {
- _0 = const 1_u32; // scope 0 at $DIR/if_condition_int.rs:+1:23: +1:24
- goto -> bb3; // scope 0 at $DIR/if_condition_int.rs:+1:5: +1:26
+ _0 = const 1_u32;
+ goto -> bb3;
}
bb3: {
- StorageDead(_2); // scope 0 at $DIR/if_condition_int.rs:+1:25: +1:26
- return; // scope 0 at $DIR/if_condition_int.rs:+2:2: +2:2
+ StorageDead(_2);
+ return;
}
}