rust/tests/mir-opt/copy-prop/borrowed_local.compare_address.CopyProp.panic-abort.diff

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

28 lines
585 B
Diff
Raw Normal View History

2024-04-07 11:23:16 -05:00
- // MIR for `compare_address` before CopyProp
+ // MIR for `compare_address` after CopyProp
2024-04-07 11:23:16 -05:00
fn compare_address() -> bool {
2023-06-06 08:47:00 -05:00
let mut _0: bool;
let mut _1: u8;
let mut _2: &u8;
let mut _3: u8;
let mut _4: &u8;
bb0: {
2023-06-06 08:47:00 -05:00
_1 = const 5_u8;
_2 = &_1;
_3 = copy _1;
_4 = &_3;
_0 = cmp_ref(copy _2, copy _4) -> [return: bb1, unwind unreachable];
}
bb1: {
2023-06-06 08:47:00 -05:00
_0 = opaque::<u8>(copy _3) -> [return: bb2, unwind unreachable];
}
bb2: {
2023-06-06 08:47:00 -05:00
return;
}
}