summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/gvn.duplicate_slice.GVN.panic-unwind.diff
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/gvn.duplicate_slice.GVN.panic-unwind.diff
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/gvn.duplicate_slice.GVN.panic-unwind.diff')
-rw-r--r--tests/mir-opt/gvn.duplicate_slice.GVN.panic-unwind.diff38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/mir-opt/gvn.duplicate_slice.GVN.panic-unwind.diff b/tests/mir-opt/gvn.duplicate_slice.GVN.panic-unwind.diff
new file mode 100644
index 000000000..8c96edaa2
--- /dev/null
+++ b/tests/mir-opt/gvn.duplicate_slice.GVN.panic-unwind.diff
@@ -0,0 +1,38 @@
+- // MIR for `duplicate_slice` before GVN
++ // MIR for `duplicate_slice` after GVN
+
+ fn duplicate_slice() -> (bool, bool) {
+ let mut _0: (bool, bool);
+ let mut _1: u128;
+ let mut _2: u128;
+ let mut _3: u128;
+ let mut _4: u128;
+ let mut _5: &str;
+ let mut _6: &str;
+ let mut _7: (&str,);
+ let mut _8: &str;
+ let mut _9: bool;
+ let mut _10: bool;
+
+ bb0: {
+ _7 = (const "a",);
+ _1 = (_7.0: &str) as u128 (Transmute);
+ _5 = identity::<&str>((_7.0: &str)) -> [return: bb1, unwind continue];
+ }
+
+ bb1: {
+ _3 = _5 as u128 (Transmute);
+ _8 = const "a";
+ _2 = _8 as u128 (Transmute);
+ _6 = identity::<&str>(_8) -> [return: bb2, unwind continue];
+ }
+
+ bb2: {
+ _4 = _6 as u128 (Transmute);
+ _9 = Eq(_1, _2);
+ _10 = Eq(_3, _4);
+ _0 = (_9, _10);
+ return;
+ }
+ }
+