about summary refs log tree commit diff
path: root/src/test/codegen
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-07-14 09:54:13 +0000
committerbors <bors@rust-lang.org>2017-07-14 09:54:13 +0000
commit20f77c6dfd49aac98f217a313ce399644f56ab54 (patch)
treebe1c52174992ffa82bc125c137035d96b4631029 /src/test/codegen
parentab91c70cc69450bc69b76df0fd2faa82bda42d6b (diff)
parentecf62e4cdcbe9fe59e2e1280739d15953cc0e500 (diff)
downloadrust-20f77c6dfd49aac98f217a313ce399644f56ab54.tar.gz
rust-20f77c6dfd49aac98f217a313ce399644f56ab54.zip
Auto merge of #43026 - arielb1:llvm-next, r=alexcrichton
[LLVM] Avoid losing the !nonnull attribute in SROA

Fixes #37945.

r? @alexcrichton
Diffstat (limited to 'src/test/codegen')
-rw-r--r--src/test/codegen/issue-37945.rs36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/test/codegen/issue-37945.rs b/src/test/codegen/issue-37945.rs
new file mode 100644
index 00000000000..e7c91f30918
--- /dev/null
+++ b/src/test/codegen/issue-37945.rs
@@ -0,0 +1,36 @@
+// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// min-llvm-version 4.0
+// compile-flags: -O
+// ignore-x86
+// ignore-arm
+// ignore-emscripten
+// ignore 32-bit platforms (LLVM has a bug with them)
+
+// See issue #37945.
+
+#![crate_type = "lib"]
+
+use std::slice::Iter;
+
+// CHECK-LABEL: @is_empty_1
+#[no_mangle]
+pub fn is_empty_1(xs: Iter<f32>) -> bool {
+// CHECK-NOT: icmp eq float* {{.*}}, null
+    {xs}.next().is_none()
+}
+
+// CHECK-LABEL: @is_empty_2
+#[no_mangle]
+pub fn is_empty_2(xs: Iter<f32>) -> bool {
+// CHECK-NOT: icmp eq float* {{.*}}, null
+    xs.map(|&x| x).next().is_none()
+}