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