rust/tests/mir-opt/copy-prop/dead_stores_79191.f.CopyProp.after.panic-unwind.mir

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

27 lines
475 B
Rust
Raw Permalink Normal View History

2023-01-15 09:30:09 -06:00
// MIR for `f` after CopyProp
fn f(_1: usize) -> usize {
2023-06-06 08:47:00 -05:00
debug a => _1;
let mut _0: usize;
let _2: usize;
let mut _3: usize;
let mut _4: usize;
2023-01-15 09:30:09 -06:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug b => _2;
2023-01-15 09:30:09 -06:00
}
bb0: {
2023-06-06 08:47:00 -05:00
_2 = copy _1;
_1 = const 5_usize;
_1 = copy _2;
StorageLive(_4);
_4 = copy _1;
2023-06-23 11:53:09 -05:00
_0 = id::<usize>(move _4) -> [return: bb1, unwind continue];
2023-01-15 09:30:09 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_4);
return;
2023-01-15 09:30:09 -06:00
}
}