rust/tests/mir-opt/const_prop/repeat.main.GVN.32bit.panic-abort.diff

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

45 lines
1.2 KiB
Diff
Raw Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `main` before GVN
+ // MIR for `main` after GVN
2020-04-04 12:15:01 -05:00
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: u32;
let mut _2: u32;
let mut _3: [u32; 8];
let _4: usize;
let mut _5: usize;
let mut _6: bool;
2020-04-04 12:15:01 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
2020-04-04 12:15:01 -05:00
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
StorageLive(_2);
StorageLive(_3);
_3 = [const 42_u32; 8];
StorageLive(_4);
_4 = const 2_usize;
2023-03-20 15:15:59 -05:00
- _5 = Len(_3);
2023-06-06 08:47:00 -05:00
- _6 = Lt(copy _4, copy _5);
- assert(move _6, "index out of bounds: the length is {} but the index is {}", move _5, copy _4) -> [success: bb1, unwind unreachable];
2023-03-20 15:15:59 -05:00
+ _5 = const 8_usize;
+ _6 = const true;
+ assert(const true, "index out of bounds: the length is {} but the index is {}", const 8_usize, const 2_usize) -> [success: bb1, unwind unreachable];
2020-04-04 12:15:01 -05:00
}
bb1: {
2023-06-06 08:47:00 -05:00
- _2 = copy _3[_4];
- _1 = Add(move _2, const 0_u32);
+ _2 = const 42_u32;
+ _1 = const 42_u32;
StorageDead(_2);
StorageDead(_4);
StorageDead(_3);
_0 = const ();
StorageDead(_1);
return;
2020-04-04 12:15:01 -05:00
}
}