diff options
| author | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-07-01 22:00:20 +0300 |
|---|---|---|
| committer | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-07-12 14:38:49 +0300 |
| commit | ecf62e4cdcbe9fe59e2e1280739d15953cc0e500 (patch) | |
| tree | 087e6ce7797354edd8e4030264afe0c626669a7f | |
| parent | 8bba5ad3098e3f20ab3c506e5a421df5da010df9 (diff) | |
| download | rust-ecf62e4cdcbe9fe59e2e1280739d15953cc0e500.tar.gz rust-ecf62e4cdcbe9fe59e2e1280739d15953cc0e500.zip | |
[LLVM] Avoid losing the !nonnull attribute in SROA
This still does not work on 32-bit archs because of an LLVM limitation, but this is only an optimization, so let's push it on 64-bit only for now. Fixes #37945
| m--------- | src/llvm | 0 | ||||
| -rw-r--r-- | src/rustllvm/llvm-rebuild-trigger | 6 | ||||
| -rw-r--r-- | src/test/codegen/issue-37945.rs | 36 |
3 files changed, 37 insertions, 5 deletions
diff --git a/src/llvm b/src/llvm -Subproject f0a23af57a17658e75d6dc50568397590a0e666 +Subproject a5ef0696d7c103006d3cb1f4263bad0ca13adca diff --git a/src/rustllvm/llvm-rebuild-trigger b/src/rustllvm/llvm-rebuild-trigger index b2d4c113295..6b410502e49 100644 --- a/src/rustllvm/llvm-rebuild-trigger +++ b/src/rustllvm/llvm-rebuild-trigger @@ -1,8 +1,4 @@ # If this file is modified, then llvm will be (optionally) cleaned and then rebuilt. # The actual contents of this file do not matter, but to trigger a change on the # build bots then the contents should be changed so git updates the mtime. -<<<<<<< 37849a002ed91ac2b80aeb2172364b4e19250e05 -2017-06-27 -======= -2017-06-26 ->>>>>>> rustc: Implement the #[global_allocator] attribute +2017-07-12 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() +} |
