2023-01-14 06:01:27 -06:00
- // MIR for `outer` before Inline
+ // MIR for `outer` after Inline
fn outer() -> usize {
let mut _0: usize; // return place in scope 0 at $DIR/issue_106141.rs:+0:19: +0:24
2023-04-05 03:44:20 -05:00
+ scope 1 (inlined inner) { // at $DIR/issue_106141.rs:3:5: 3:12
+ let mut _1: bool; // in scope 1 at $DIR/issue_106141.rs:14:8: 14:21
+ let mut _2: bool; // in scope 1 at $DIR/issue_106141.rs:14:8: 14:21
+ let mut _3: &[bool; 1]; // in scope 1 at $DIR/issue_106141.rs:12:18: 12:25
2023-01-14 06:01:27 -06:00
+ scope 2 {
2022-10-28 14:01:05 -05:00
+ debug buffer => const _; // in scope 2 at $DIR/issue_106141.rs:12:9: 12:15
2023-01-14 06:01:27 -06:00
+ scope 3 {
2023-04-05 03:44:20 -05:00
+ debug index => _0; // in scope 3 at $DIR/issue_106141.rs:13:9: 13:14
2023-01-14 06:01:27 -06:00
+ }
+ }
+ }
bb0: {
- _0 = inner() -> bb1; // scope 0 at $DIR/issue_106141.rs:+1:5: +1:12
+ StorageLive(_3); // scope 0 at $DIR/issue_106141.rs:+1:5: +1:12
2023-04-05 03:44:20 -05:00
+ _3 = const _; // scope 1 at $DIR/issue_106141.rs:12:18: 12:25
2023-01-14 06:01:27 -06:00
// mir::Constant
2023-04-05 03:44:20 -05:00
- // + span: $DIR/issue_106141.rs:3:5: 3:10
2023-01-14 06:01:27 -06:00
- // + literal: Const { ty: fn() -> usize {inner}, val: Value(<ZST>) }
2023-04-05 03:44:20 -05:00
+ // + span: $DIR/issue_106141.rs:12:18: 12:25
2023-01-14 06:01:27 -06:00
+ // + literal: Const { ty: &[bool; 1], val: Unevaluated(inner, [], Some(promoted[0])) }
2023-04-05 03:44:20 -05:00
+ _0 = index() -> bb1; // scope 2 at $DIR/issue_106141.rs:13:17: 13:24
2023-01-14 06:01:27 -06:00
+ // mir::Constant
2023-04-05 03:44:20 -05:00
+ // + span: $DIR/issue_106141.rs:13:17: 13:22
2023-01-14 06:01:27 -06:00
+ // + literal: Const { ty: fn() -> usize {index}, val: Value(<ZST>) }
}
bb1: {
2023-04-05 03:44:20 -05:00
+ StorageLive(_1); // scope 3 at $DIR/issue_106141.rs:14:8: 14:21
+ _2 = Lt(_0, const 1_usize); // scope 3 at $DIR/issue_106141.rs:14:8: 14:21
+ assert(move _2, "index out of bounds: the length is {} but the index is {}", const 1_usize, _0) -> bb2; // scope 3 at $DIR/issue_106141.rs:14:8: 14:21
2023-01-14 06:01:27 -06:00
+ }
+
+ bb2: {
2023-04-05 03:44:20 -05:00
+ _1 = (*_3)[_0]; // scope 3 at $DIR/issue_106141.rs:14:8: 14:21
+ switchInt(move _1) -> [0: bb3, otherwise: bb4]; // scope 3 at $DIR/issue_106141.rs:14:8: 14:21
2023-01-14 06:01:27 -06:00
+ }
+
+ bb3: {
2023-04-05 03:44:20 -05:00
+ _0 = const 0_usize; // scope 3 at $DIR/issue_106141.rs:17:9: 17:10
+ goto -> bb4; // scope 3 at $DIR/issue_106141.rs:14:5: 18:6
2023-01-14 06:01:27 -06:00
+ }
+
+ bb4: {
2023-04-05 03:44:20 -05:00
+ StorageDead(_1); // scope 3 at $DIR/issue_106141.rs:18:5: 18:6
2023-01-14 06:01:27 -06:00
+ StorageDead(_3); // scope 0 at $DIR/issue_106141.rs:+1:5: +1:12
return; // scope 0 at $DIR/issue_106141.rs:+2:2: +2:2
}
}