]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/issue-37945.rs
Rollup merge of #45171 - rust-lang:petrochenkov-patch-2, r=steveklabnik
[rust.git] / src / test / codegen / issue-37945.rs
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 }