rust/tests/mir-opt/const_prop/issue_66971.main.ConstProp.diff

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

29 lines
1.6 KiB
Diff
Raw Normal View History

2020-04-04 17:15:01 +00:00
- // MIR for `main` before ConstProp
+ // MIR for `main` after ConstProp
fn main() -> () {
2022-11-02 21:54:49 +00:00
let mut _0: (); // return place in scope 0 at $DIR/issue_66971.rs:+0:11: +0:11
let _1: (); // in scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
let mut _2: ((), u8, u8); // in scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
2023-01-25 18:34:35 +00:00
let mut _3: (); // in scope 0 at $DIR/issue_66971.rs:+1:13: +1:15
2020-04-04 17:15:01 +00:00
bb0: {
2022-11-02 21:54:49 +00:00
StorageLive(_1); // scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
StorageLive(_2); // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
2023-01-25 18:34:35 +00:00
StorageLive(_3); // scope 0 at $DIR/issue_66971.rs:+1:13: +1:15
_2 = (move _3, const 0_u8, const 0_u8); // scope 0 at $DIR/issue_66971.rs:+1:12: +1:22
StorageDead(_3); // scope 0 at $DIR/issue_66971.rs:+1:21: +1:22
2022-11-02 21:54:49 +00:00
_1 = encode(move _2) -> bb1; // scope 0 at $DIR/issue_66971.rs:+1:5: +1:23
2020-04-04 17:15:01 +00:00
// mir::Constant
2022-11-02 21:54:49 +00:00
// + span: $DIR/issue_66971.rs:17:5: 17:11
2022-07-06 14:14:46 +00:00
// + literal: Const { ty: fn(((), u8, u8)) {encode}, val: Value(<ZST>) }
2020-04-04 17:15:01 +00:00
}
bb1: {
2022-11-02 21:54:49 +00:00
StorageDead(_2); // scope 0 at $DIR/issue_66971.rs:+1:22: +1:23
StorageDead(_1); // scope 0 at $DIR/issue_66971.rs:+1:23: +1:24
return; // scope 0 at $DIR/issue_66971.rs:+2:2: +2:2
2020-04-04 17:15:01 +00:00
}
}