summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.diff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
commitcec1877e180393eba0f6ddb0cf97bf3a791631c7 (patch)
tree47b4dac2a9dd9a40c30c251b4d4a72d7ccf77e9f /tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.diff
parentAdding debian version 1.74.1+dfsg1-1. (diff)
downloadrustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.tar.xz
rustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.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-abort.diff')
-rw-r--r--tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.diff38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.diff b/tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.diff
new file mode 100644
index 000000000..7ae1fae68
--- /dev/null
+++ b/tests/mir-opt/gvn.duplicate_slice.GVN.panic-abort.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 unreachable];
+ }
+
+ bb1: {
+ _3 = _5 as u128 (Transmute);
+ _8 = const "a";
+ _2 = _8 as u128 (Transmute);
+ _6 = identity::<&str>(_8) -> [return: bb2, unwind unreachable];
+ }
+
+ bb2: {
+ _4 = _6 as u128 (Transmute);
+ _9 = Eq(_1, _2);
+ _10 = Eq(_3, _4);
+ _0 = (_9, _10);
+ return;
+ }
+ }
+