summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/issue-96497-slice-size-nowrap.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/codegen/issue-96497-slice-size-nowrap.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/codegen/issue-96497-slice-size-nowrap.rs')
-rw-r--r--src/test/codegen/issue-96497-slice-size-nowrap.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/test/codegen/issue-96497-slice-size-nowrap.rs b/src/test/codegen/issue-96497-slice-size-nowrap.rs
deleted file mode 100644
index a5dbef934..000000000
--- a/src/test/codegen/issue-96497-slice-size-nowrap.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-// This test case checks that LLVM is aware that computing the size of a slice cannot wrap.
-// The possibility of wrapping results in an additional branch when dropping boxed slices
-// in some situations, see https://github.com/rust-lang/rust/issues/96497#issuecomment-1112865218
-
-// compile-flags: -O
-// min-llvm-version: 14.0
-
-#![crate_type="lib"]
-
-// CHECK-LABEL: @simple_size_of_nowrap
-#[no_mangle]
-pub fn simple_size_of_nowrap(x: &[u32]) -> usize {
- // Make sure the shift used to compute the size has a nowrap flag.
-
- // CHECK: [[A:%.*]] = shl nsw {{.*}}, 2
- // CHECK-NEXT: ret {{.*}} [[A]]
- core::mem::size_of_val(x)
-}
-
-// CHECK-LABEL: @drop_write
-#[no_mangle]
-pub fn drop_write(mut x: Box<[u32]>) {
- // Check that this write is optimized out.
- // This depends on the size calculation not wrapping,
- // since otherwise LLVM can't tell that the memory is always deallocated if the slice len > 0.
-
- // CHECK-NOT: store i32 42
- x[1] = 42;
-}