summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/issue_78192.f.InstSimplify.diff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/issue_78192.f.InstSimplify.diff')
-rw-r--r--tests/mir-opt/issue_78192.f.InstSimplify.diff36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/mir-opt/issue_78192.f.InstSimplify.diff b/tests/mir-opt/issue_78192.f.InstSimplify.diff
index 914d7ceb2..10e3dd203 100644
--- a/tests/mir-opt/issue_78192.f.InstSimplify.diff
+++ b/tests/mir-opt/issue_78192.f.InstSimplify.diff
@@ -2,28 +2,28 @@
+ // MIR for `f` after InstSimplify
fn f(_1: &T) -> *const T {
- debug a => _1; // in scope 0 at $DIR/issue_78192.rs:+0:13: +0:14
- let mut _0: *const T; // return place in scope 0 at $DIR/issue_78192.rs:+0:23: +0:31
- let _2: &*const T; // in scope 0 at $DIR/issue_78192.rs:+1:9: +1:10
- let _3: &*const T; // in scope 0 at $DIR/issue_78192.rs:+1:24: +1:40
- let _4: *const T; // in scope 0 at $DIR/issue_78192.rs:+1:25: +1:40
+ debug a => _1;
+ let mut _0: *const T;
+ let _2: &*const T;
+ let _3: &*const T;
+ let _4: *const T;
scope 1 {
- debug b => _2; // in scope 1 at $DIR/issue_78192.rs:+1:9: +1:10
+ debug b => _2;
}
bb0: {
- StorageLive(_2); // scope 0 at $DIR/issue_78192.rs:+1:9: +1:10
- StorageLive(_3); // scope 0 at $DIR/issue_78192.rs:+1:24: +1:40
- StorageLive(_4); // scope 0 at $DIR/issue_78192.rs:+1:25: +1:40
- _4 = &raw const (*_1); // scope 0 at $DIR/issue_78192.rs:+1:26: +1:27
- _3 = &_4; // scope 0 at $DIR/issue_78192.rs:+1:24: +1:40
-- _2 = &(*_3); // scope 0 at $DIR/issue_78192.rs:+1:24: +1:40
-+ _2 = _3; // scope 0 at $DIR/issue_78192.rs:+1:24: +1:40
- StorageDead(_3); // scope 0 at $DIR/issue_78192.rs:+1:40: +1:41
- _0 = (*_2); // scope 1 at $DIR/issue_78192.rs:+2:5: +2:7
- StorageDead(_4); // scope 0 at $DIR/issue_78192.rs:+3:1: +3:2
- StorageDead(_2); // scope 0 at $DIR/issue_78192.rs:+3:1: +3:2
- return; // scope 0 at $DIR/issue_78192.rs:+3:2: +3:2
+ StorageLive(_2);
+ StorageLive(_3);
+ StorageLive(_4);
+ _4 = &raw const (*_1);
+ _3 = &_4;
+- _2 = &(*_3);
++ _2 = _3;
+ StorageDead(_3);
+ _0 = (*_2);
+ StorageDead(_4);
+ StorageDead(_2);
+ return;
}
}