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
278 B
Rust
Raw Normal View History

2023-04-05 08:44:20 +00:00
// ignore-wasm32 compiled with panic=abort by default
2023-05-07 03:20:58 +00:00
// unit-test: InstSimplify
// EMIT_MIR combine_array_len.norm2.InstSimplify.diff
2020-04-02 21:09:01 +00: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);
}