]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/issue-37945.rs
Update miri to rustc changes
[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-gnux32
17 // ignore 32-bit platforms (LLVM has a bug with them)
18
19 // See issue #37945.
20
21 #![crate_type = "lib"]
22
23 use std::slice::Iter;
24
25 // CHECK-LABEL: @is_empty_1
26 #[no_mangle]
27 pub fn is_empty_1(xs: Iter<f32>) -> bool {
28 // CHECK-NOT: icmp eq float* {{.*}}, null
29     {xs}.next().is_none()
30 }
31
32 // CHECK-LABEL: @is_empty_2
33 #[no_mangle]
34 pub fn is_empty_2(xs: Iter<f32>) -> bool {
35 // CHECK-NOT: icmp eq float* {{.*}}, null
36     xs.map(|&x| x).next().is_none()
37 }