rust/tests/mir-opt/combine_array_len.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
222 B
Rust
Raw Normal View History

// unit-test: InstCombine
2020-07-27 14:22:43 -05:00
// EMIT_MIR combine_array_len.norm2.InstCombine.diff
2020-04-02 16:09:01 -05:00
fn norm2(x: [f32; 2]) -> f32 {
let a = x[0];
let b = x[1];
a*a + b*b
}
fn main() {
assert_eq!(norm2([3.0, 4.0]), 5.0*5.0);
}