]> git.lizzy.rs Git - rust.git/commitdiff
Ensure that `MaybeLiveLocals` works with simple sum-type assignments
authorDylan MacKenzie <ecstaticmorse@gmail.com>
Mon, 4 Oct 2021 21:10:30 +0000 (14:10 -0700)
committerDylan MacKenzie <ecstaticmorse@gmail.com>
Mon, 4 Oct 2021 21:10:30 +0000 (14:10 -0700)
src/test/ui/mir-dataflow/liveness-enum.rs [new file with mode: 0644]
src/test/ui/mir-dataflow/liveness-enum.stderr [new file with mode: 0644]

diff --git a/src/test/ui/mir-dataflow/liveness-enum.rs b/src/test/ui/mir-dataflow/liveness-enum.rs
new file mode 100644 (file)
index 0000000..5eb04ae
--- /dev/null
@@ -0,0 +1,22 @@
+#![feature(core_intrinsics, rustc_attrs)]
+
+use std::intrinsics::rustc_peek;
+
+#[rustc_mir(rustc_peek_liveness, stop_after_dataflow)]
+fn foo() -> Option<i32> {
+    let mut x = None;
+
+    // `x` is live here since it is used in the next statement...
+    rustc_peek(x);
+
+    dbg!(x);
+
+    // But not here, since it is overwritten below
+    rustc_peek(x); //~ ERROR rustc_peek: bit not set
+
+    x = Some(4);
+
+    x
+}
+
+fn main() {}
diff --git a/src/test/ui/mir-dataflow/liveness-enum.stderr b/src/test/ui/mir-dataflow/liveness-enum.stderr
new file mode 100644 (file)
index 0000000..483944d
--- /dev/null
@@ -0,0 +1,10 @@
+error: rustc_peek: bit not set
+  --> $DIR/liveness-enum.rs:15:5
+   |
+LL |     rustc_peek(x);
+   |     ^^^^^^^^^^^^^
+
+error: stop_after_dataflow ended compilation
+
+error: aborting due to 2 previous errors
+