rust/tests/mir-opt/inline/inline_any_operand.bar.Inline.after.mir

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

34 lines
701 B
Rust
Raw Normal View History

2020-04-04 12:15:01 -05:00
// MIR for `bar` after Inline
fn bar() -> bool {
2023-06-06 08:47:00 -05:00
let mut _0: bool;
let _1: fn(i32, i32) -> bool {foo};
let mut _2: fn(i32, i32) -> bool {foo};
let mut _3: i32;
let mut _4: i32;
2020-04-04 12:15:01 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug f => _1;
scope 2 (inlined foo) {
debug x => _3;
debug y => _4;
2020-04-04 12:15:01 -05:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
_1 = foo;
StorageLive(_2);
_2 = copy _1;
StorageLive(_3);
_3 = const 1_i32;
StorageLive(_4);
_4 = const -1_i32;
_0 = Eq(copy _3, copy _4);
StorageDead(_4);
StorageDead(_3);
StorageDead(_2);
StorageDead(_1);
return;
2020-04-04 12:15:01 -05:00
}
}