]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/combine_array_len.rs
Rollup merge of #52656 - jD91mZM2:stablize-uds, r=alexcrichton
[rust.git] / src / test / mir-opt / combine_array_len.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 fn norm2(x: [f32; 2]) -> f32 {
12     let a = x[0];
13     let b = x[1];
14     a*a + b*b
15 }
16
17 fn main() {
18     assert_eq!(norm2([3.0, 4.0]), 5.0*5.0);
19 }
20
21 // END RUST SOURCE
22
23 // START rustc.norm2.InstCombine.before.mir
24 //     _4 = Len(_1);
25 //     ...
26 //     _8 = Len(_1);
27 // END rustc.norm2.InstCombine.before.mir
28
29 // START rustc.norm2.InstCombine.after.mir
30 //     _4 = const 2usize;
31 //     ...
32 //     _8 = const 2usize;
33 // END rustc.norm2.InstCombine.after.mir