summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mir-dataflow/liveness-ptr.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/mir-dataflow/liveness-ptr.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/mir-dataflow/liveness-ptr.rs')
-rw-r--r--src/test/ui/mir-dataflow/liveness-ptr.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/mir-dataflow/liveness-ptr.rs b/src/test/ui/mir-dataflow/liveness-ptr.rs
deleted file mode 100644
index 786da523a..000000000
--- a/src/test/ui/mir-dataflow/liveness-ptr.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-#![feature(core_intrinsics, rustc_attrs)]
-
-use std::intrinsics::rustc_peek;
-
-#[rustc_mir(rustc_peek_liveness, stop_after_dataflow)]
-fn foo() -> i32 {
- let mut x: i32;
- let mut p: *const i32;
-
- x = 0;
-
- // `x` is live here since it is used in the next statement...
- rustc_peek(x);
-
- p = &x;
-
- // ... but not here, even while it can be accessed through `p`.
- rustc_peek(x); //~ ERROR rustc_peek: bit not set
- let tmp = unsafe { *p };
-
- x = tmp + 1;
-
- rustc_peek(x);
-
- x
-}
-
-fn main() {}