Skip to content

Commit 6baec3c

Browse files
committed
FileCheck ref_deref.
1 parent c8c9207 commit 6baec3c

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

tests/mir-opt/const_prop/ref_deref.main.ConstProp.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
let mut _2: &i32;
88
let _3: i32;
99
let mut _4: &i32;
10+
scope 1 {
11+
debug a => _1;
12+
}
1013

1114
bb0: {
1215
StorageLive(_1);
@@ -15,8 +18,8 @@
1518
_2 = &(*_4);
1619
_1 = (*_2);
1720
StorageDead(_2);
18-
StorageDead(_1);
1921
_0 = const ();
22+
StorageDead(_1);
2023
return;
2124
}
2225
}

tests/mir-opt/const_prop/ref_deref.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
3-
// EMIT_MIR ref_deref.main.ConstProp.diff
42

3+
// EMIT_MIR ref_deref.main.ConstProp.diff
54
fn main() {
6-
*(&4);
5+
// CHECK-LABEL: fn main(
6+
// CHECK: debug a => [[a:_.*]];
7+
// CHECK: [[a]] = (*{{_.*}});
8+
let a = *(&4);
79
}

tests/mir-opt/const_prop/ref_deref_project.main.ConstProp.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
let mut _2: &i32;
88
let _3: (i32, i32);
99
let mut _4: &(i32, i32);
10+
scope 1 {
11+
debug a => _1;
12+
}
1013

1114
bb0: {
1215
StorageLive(_1);
@@ -15,8 +18,8 @@
1518
_2 = &((*_4).1: i32);
1619
_1 = (*_2);
1720
StorageDead(_2);
18-
StorageDead(_1);
1921
_0 = const ();
22+
StorageDead(_1);
2023
return;
2124
}
2225
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
// skip-filecheck
1+
// This does not currently propagate (#67862)
22
// unit-test: ConstProp
3-
// EMIT_MIR ref_deref_project.main.ConstProp.diff
43

4+
// EMIT_MIR ref_deref_project.main.ConstProp.diff
55
fn main() {
6-
*(&(4, 5).1); // This does not currently propagate (#67862)
6+
// CHECK-LABEL: fn main(
7+
// CHECK: debug a => [[a:_.*]];
8+
// CHECK: [[a]] = (*{{_.*}});
9+
let a = *(&(4, 5).1);
710
}

0 commit comments

Comments
 (0)