rust/tests/mir-opt/copy-prop/branch.rs

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

29 lines
407 B
Rust
Raw Normal View History

2023-04-05 03:44:20 -05:00
// ignore-wasm32 compiled with panic=abort by default
2023-01-15 09:30:09 -06:00
//! Tests that we bail out when there are multiple assignments to the same local.
// unit-test: CopyProp
fn val() -> i32 {
1
}
fn cond() -> bool {
true
}
// EMIT_MIR branch.foo.CopyProp.diff
fn foo() -> i32 {
let x = val();
let y = if cond() {
x
} else {
val();
x
};
y
}
fn main() {
foo();
}