rust/tests/mir-opt/const_prop/aggregate.main.PreCodegen.after.panic-unwind.mir

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

37 lines
740 B
Rust
Raw Normal View History

2022-05-23 02:27:44 -05:00
// MIR for `main` after PreCodegen
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: u8;
let mut _2: u8;
let mut _3: (i32, u8, i32);
let _4: ();
let mut _5: u8;
2022-05-23 02:27:44 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
2022-05-23 02:27:44 -05:00
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
StorageLive(_2);
StorageLive(_3);
_3 = (const 0_i32, const 1_u8, const 2_i32);
_2 = const 1_u8;
_1 = const 1_u8;
StorageDead(_2);
StorageDead(_3);
StorageLive(_4);
StorageLive(_5);
_5 = const 1_u8;
2023-02-07 13:24:21 -06:00
_4 = foo(const 1_u8) -> [return: bb1, unwind continue];
2023-01-29 06:50:27 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_5);
StorageDead(_4);
_0 = const ();
StorageDead(_1);
return;
2022-05-23 02:27:44 -05:00
}
}