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

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

33 lines
537 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2020-05-24 19:37:09 +00:00
//! Tests that assignment in both branches of an `if` are eliminated.
//@ test-mir-pass: DestinationPropagation
2020-05-24 19:37:09 +00:00
fn val() -> i32 {
1
}
fn cond() -> bool {
true
}
// EMIT_MIR branch.foo.DestinationPropagation.diff
fn foo() -> i32 {
2024-04-14 09:35:01 +00:00
// CHECK-LABEL: fn foo(
// CHECK: debug y => [[y:_.*]];
// CHECK: [[y]] = val()
// CHECK-NOT: [[y]] = {{_.*}};
2020-05-24 19:37:09 +00:00
let x = val();
let y = if cond() {
x
} else {
val();
x
};
y
}
fn main() {
foo();
2020-05-24 19:37:09 +00:00
}