Skip to content

Commit 20f77c6

Browse files
committed
Auto merge of #43026 - arielb1:llvm-next, r=alexcrichton
[LLVM] Avoid losing the !nonnull attribute in SROA Fixes #37945. r? @alexcrichton
2 parents ab91c70 + ecf62e4 commit 20f77c6

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

src/rustllvm/llvm-rebuild-trigger

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
# If this file is modified, then llvm will be (optionally) cleaned and then rebuilt.
22
# The actual contents of this file do not matter, but to trigger a change on the
33
# build bots then the contents should be changed so git updates the mtime.
4-
<<<<<<< 37849a002ed91ac2b80aeb2172364b4e19250e05
5-
2017-06-27
6-
=======
7-
2017-06-26
8-
>>>>>>> rustc: Implement the #[global_allocator] attribute
4+
2017-07-12

src/test/codegen/issue-37945.rs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// min-llvm-version 4.0
12+
// compile-flags: -O
13+
// ignore-x86
14+
// ignore-arm
15+
// ignore-emscripten
16+
// ignore 32-bit platforms (LLVM has a bug with them)
17+
18+
// See issue #37945.
19+
20+
#![crate_type = "lib"]
21+
22+
use std::slice::Iter;
23+
24+
// CHECK-LABEL: @is_empty_1
25+
#[no_mangle]
26+
pub fn is_empty_1(xs: Iter<f32>) -> bool {
27+
// CHECK-NOT: icmp eq float* {{.*}}, null
28+
{xs}.next().is_none()
29+
}
30+
31+
// CHECK-LABEL: @is_empty_2
32+
#[no_mangle]
33+
pub fn is_empty_2(xs: Iter<f32>) -> bool {
34+
// CHECK-NOT: icmp eq float* {{.*}}, null
35+
xs.map(|&x| x).next().is_none()
36+
}

0 commit comments

Comments
 (0)