rust/tests/mir-opt/inline/inline_trait_method_2.test2.Inline.after.panic-abort.mir

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

29 lines
1.8 KiB
Rust
Raw Normal View History

2020-04-04 12:15:01 -05:00
// MIR for `test2` after Inline
fn test2(_1: &dyn X) -> bool {
2022-11-02 16:54:49 -05:00
debug x => _1; // in scope 0 at $DIR/inline_trait_method_2.rs:+0:10: +0:11
let mut _0: bool; // return place in scope 0 at $DIR/inline_trait_method_2.rs:+0:24: +0:28
let mut _2: &dyn X; // in scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
let mut _3: &dyn X; // in scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
2023-04-05 03:44:20 -05:00
scope 1 (inlined test) { // at $DIR/inline_trait_method_2.rs:6:5: 6:12
debug x => _2; // in scope 1 at $DIR/inline_trait_method_2.rs:10:9: 10:10
2020-04-04 12:15:01 -05:00
}
bb0: {
2022-11-02 16:54:49 -05:00
StorageLive(_2); // scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
StorageLive(_3); // scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
_3 = &(*_1); // scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
_2 = move _3 as &dyn X (Pointer(Unsize)); // scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
StorageDead(_3); // scope 0 at $DIR/inline_trait_method_2.rs:+1:10: +1:11
_0 = <dyn X as X>::y(_2) -> [return: bb1, unwind unreachable]; // scope 1 at $DIR/inline_trait_method_2.rs:11:5: 11:10
2020-04-04 12:15:01 -05:00
// mir::Constant
2023-04-05 03:44:20 -05:00
// + span: $DIR/inline_trait_method_2.rs:11:7: 11:8
2022-09-21 10:57:30 -05:00
// + literal: Const { ty: for<'a> fn(&'a dyn X) -> bool {<dyn X as X>::y}, val: Value(<ZST>) }
2020-04-04 12:15:01 -05:00
}
bb1: {
2022-11-02 16:54:49 -05:00
StorageDead(_2); // scope 0 at $DIR/inline_trait_method_2.rs:+1:11: +1:12
return; // scope 0 at $DIR/inline_trait_method_2.rs:+2:2: +2:2
2020-04-04 12:15:01 -05:00
}
}