summaryrefslogtreecommitdiffstats
path: root/tests/codegen/integer-overflow.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 /tests/codegen/integer-overflow.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 'tests/codegen/integer-overflow.rs')
-rw-r--r--tests/codegen/integer-overflow.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/codegen/integer-overflow.rs b/tests/codegen/integer-overflow.rs
new file mode 100644
index 000000000..183de56db
--- /dev/null
+++ b/tests/codegen/integer-overflow.rs
@@ -0,0 +1,26 @@
+// no-system-llvm
+// compile-flags: -O -C overflow-checks=on
+
+#![crate_type = "lib"]
+
+
+pub struct S1<'a> {
+ data: &'a [u8],
+ position: usize,
+}
+
+// CHECK-LABEL: @slice_no_index_order
+#[no_mangle]
+pub fn slice_no_index_order<'a>(s: &'a mut S1, n: usize) -> &'a [u8] {
+ // CHECK-NOT: slice_index_order_fail
+ let d = &s.data[s.position..s.position+n];
+ s.position += n;
+ return d;
+}
+
+// CHECK-LABEL: @test_check
+#[no_mangle]
+pub fn test_check<'a>(s: &'a mut S1, x: usize, y: usize) -> &'a [u8] {
+ // CHECK: slice_index_order_fail
+ &s.data[x..y]
+}