about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-05-29 15:07:05 +0900
committerGitHub <noreply@github.com>2020-05-29 15:07:05 +0900
commit05229f7be35cd2a4015cfbd4b8a83d8af76edde2 (patch)
treeca87beb6dfd46c20b6a0042daf1fdba7c02777c6 /src
parentd19b51e441833630a53a8966e3bc0ed1c94420f7 (diff)
parentcd5f228acd214c0a6555756b060dd0223d31050d (diff)
downloadrust-05229f7be35cd2a4015cfbd4b8a83d8af76edde2.tar.gz
rust-05229f7be35cd2a4015cfbd4b8a83d8af76edde2.zip
Rollup merge of #72547 - alex:patch-1, r=oli-obk
Added a codegen test for a recent optimization for overflow-checks=on

Closes #58692
Diffstat (limited to 'src')
-rw-r--r--src/test/codegen/integer-overflow.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/codegen/integer-overflow.rs b/src/test/codegen/integer-overflow.rs
new file mode 100644
index 00000000000..183de56db96
--- /dev/null
+++ b/src/test/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]
+}