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.

14 lines
276 B
Rust
Raw Normal View History

2023-04-05 03:44:20 -05:00
// ignore-wasm32 compiled with panic=abort by default
// 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);
}