Remove unnecessary -Zunsound-mir-opts uses in tests
This commit is contained in:
parent
b9d0ea95c8
commit
c653af81b1
13 changed files with 177 additions and 168 deletions
|
@ -1,4 +1,4 @@
|
||||||
// compile-flags: -Z span_free_formats -Zunsound-mir-opts
|
// compile-flags: -Z span_free_formats
|
||||||
|
|
||||||
// Tests that MIR inliner works for any operand
|
// Tests that MIR inliner works for any operand
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// compile-flags: -Z span_free_formats -Z mir-opt-level=3 -Zunsound-mir-opts
|
// compile-flags: -Z span_free_formats -Z mir-opt-level=3
|
||||||
|
|
||||||
// EMIT_MIR inline_trait_method_2.test2.Inline.after.mir
|
// EMIT_MIR inline_trait_method_2.test2.Inline.after.mir
|
||||||
fn test2(x: &dyn X) -> bool {
|
fn test2(x: &dyn X) -> bool {
|
||||||
|
|
|
@ -4,13 +4,15 @@ fn bar() -> bool {
|
||||||
let mut _0: bool; // return place in scope 0 at $DIR/inline-any-operand.rs:10:13: 10:17
|
let mut _0: bool; // return place in scope 0 at $DIR/inline-any-operand.rs:10:13: 10:17
|
||||||
let _1: fn(i32, i32) -> bool {foo}; // in scope 0 at $DIR/inline-any-operand.rs:11:9: 11:10
|
let _1: fn(i32, i32) -> bool {foo}; // in scope 0 at $DIR/inline-any-operand.rs:11:9: 11:10
|
||||||
let mut _2: fn(i32, i32) -> bool {foo}; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:6
|
let mut _2: fn(i32, i32) -> bool {foo}; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:6
|
||||||
let mut _3: i32; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:13
|
let mut _5: i32; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
let mut _4: i32; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:13
|
let mut _6: i32; // in scope 0 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug f => _1; // in scope 1 at $DIR/inline-any-operand.rs:11:9: 11:10
|
debug f => _1; // in scope 1 at $DIR/inline-any-operand.rs:11:9: 11:10
|
||||||
scope 2 {
|
scope 2 {
|
||||||
debug x => _3; // in scope 2 at $DIR/inline-any-operand.rs:16:8: 16:9
|
debug x => _5; // in scope 2 at $DIR/inline-any-operand.rs:16:8: 16:9
|
||||||
debug y => _4; // in scope 2 at $DIR/inline-any-operand.rs:16:16: 16:17
|
debug y => _6; // in scope 2 at $DIR/inline-any-operand.rs:16:16: 16:17
|
||||||
|
let mut _3: i32; // in scope 2 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
|
let mut _4: i32; // in scope 2 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,13 +24,19 @@ fn bar() -> bool {
|
||||||
// + literal: Const { ty: fn(i32, i32) -> bool {foo}, val: Value(Scalar(<ZST>)) }
|
// + literal: Const { ty: fn(i32, i32) -> bool {foo}, val: Value(Scalar(<ZST>)) }
|
||||||
StorageLive(_2); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:6
|
StorageLive(_2); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:6
|
||||||
_2 = _1; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:6
|
_2 = _1; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:6
|
||||||
StorageLive(_3); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
StorageLive(_5); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
_3 = const 1_i32; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
_5 = const 1_i32; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
StorageLive(_4); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
StorageLive(_6); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
_4 = const -1_i32; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
_6 = const -1_i32; // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
|
StorageLive(_3); // scope 2 at $DIR/inline-any-operand.rs:17:5: 17:6
|
||||||
|
_3 = _5; // scope 2 at $DIR/inline-any-operand.rs:17:5: 17:6
|
||||||
|
StorageLive(_4); // scope 2 at $DIR/inline-any-operand.rs:17:10: 17:11
|
||||||
|
_4 = _6; // scope 2 at $DIR/inline-any-operand.rs:17:10: 17:11
|
||||||
_0 = Eq(move _3, move _4); // scope 2 at $DIR/inline-any-operand.rs:17:5: 17:11
|
_0 = Eq(move _3, move _4); // scope 2 at $DIR/inline-any-operand.rs:17:5: 17:11
|
||||||
StorageDead(_4); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
StorageDead(_4); // scope 2 at $DIR/inline-any-operand.rs:17:10: 17:11
|
||||||
StorageDead(_3); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
StorageDead(_3); // scope 2 at $DIR/inline-any-operand.rs:17:10: 17:11
|
||||||
|
StorageDead(_6); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
|
StorageDead(_5); // scope 1 at $DIR/inline-any-operand.rs:12:5: 12:13
|
||||||
StorageDead(_2); // scope 1 at $DIR/inline-any-operand.rs:12:12: 12:13
|
StorageDead(_2); // scope 1 at $DIR/inline-any-operand.rs:12:12: 12:13
|
||||||
StorageDead(_1); // scope 0 at $DIR/inline-any-operand.rs:13:1: 13:2
|
StorageDead(_1); // scope 0 at $DIR/inline-any-operand.rs:13:1: 13:2
|
||||||
return; // scope 0 at $DIR/inline-any-operand.rs:13:2: 13:2
|
return; // scope 0 at $DIR/inline-any-operand.rs:13:2: 13:2
|
||||||
|
|
|
@ -7,6 +7,7 @@ fn test2(_1: &dyn X) -> bool {
|
||||||
let mut _3: &dyn X; // in scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
let mut _3: &dyn X; // in scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug x => _2; // in scope 1 at $DIR/inline-trait-method_2.rs:9:9: 9:10
|
debug x => _2; // in scope 1 at $DIR/inline-trait-method_2.rs:9:9: 9:10
|
||||||
|
let mut _4: &dyn X; // in scope 1 at $DIR/inline-trait-method_2.rs:5:5: 5:12
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
|
@ -15,13 +16,16 @@ fn test2(_1: &dyn X) -> bool {
|
||||||
_3 = &(*_1); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
_3 = &(*_1); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
||||||
_2 = move _3 as &dyn X (Pointer(Unsize)); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
_2 = move _3 as &dyn X (Pointer(Unsize)); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
||||||
StorageDead(_3); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
StorageDead(_3); // scope 0 at $DIR/inline-trait-method_2.rs:5:10: 5:11
|
||||||
_0 = <dyn X as X>::y(move _2) -> bb1; // scope 1 at $DIR/inline-trait-method_2.rs:10:5: 10:10
|
StorageLive(_4); // scope 1 at $DIR/inline-trait-method_2.rs:10:5: 10:6
|
||||||
|
_4 = _2; // scope 1 at $DIR/inline-trait-method_2.rs:10:5: 10:6
|
||||||
|
_0 = <dyn X as X>::y(move _4) -> bb1; // scope 1 at $DIR/inline-trait-method_2.rs:10:5: 10:10
|
||||||
// mir::Constant
|
// mir::Constant
|
||||||
// + span: $DIR/inline-trait-method_2.rs:10:7: 10:8
|
// + span: $DIR/inline-trait-method_2.rs:10:7: 10:8
|
||||||
// + literal: Const { ty: for<'r> fn(&'r dyn X) -> bool {<dyn X as X>::y}, val: Value(Scalar(<ZST>)) }
|
// + literal: Const { ty: for<'r> fn(&'r dyn X) -> bool {<dyn X as X>::y}, val: Value(Scalar(<ZST>)) }
|
||||||
}
|
}
|
||||||
|
|
||||||
bb1: {
|
bb1: {
|
||||||
|
StorageDead(_4); // scope 1 at $DIR/inline-trait-method_2.rs:10:9: 10:10
|
||||||
StorageDead(_2); // scope 0 at $DIR/inline-trait-method_2.rs:5:11: 5:12
|
StorageDead(_2); // scope 0 at $DIR/inline-trait-method_2.rs:5:11: 5:12
|
||||||
return; // scope 0 at $DIR/inline-trait-method_2.rs:6:2: 6:2
|
return; // scope 0 at $DIR/inline-trait-method_2.rs:6:2: 6:2
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// compile-flags: -Zmir-opt-level=1 -Zunsound-mir-opts
|
// compile-flags: -Zmir-opt-level=1
|
||||||
|
|
||||||
// EMIT_MIR nrvo_simple.nrvo.RenameReturnPlace.diff
|
// EMIT_MIR nrvo_simple.nrvo.RenameReturnPlace.diff
|
||||||
fn nrvo(init: fn(&mut [u8; 1024])) -> [u8; 1024] {
|
fn nrvo(init: fn(&mut [u8; 1024])) -> [u8; 1024] {
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
// compile-flags: -Zunsound-mir-opts
|
|
||||||
|
|
||||||
fn map(x: Option<Box<()>>) -> Option<Box<()>> {
|
fn map(x: Option<Box<()>>) -> Option<Box<()>> {
|
||||||
match x {
|
match x {
|
||||||
None => None,
|
None => None,
|
||||||
|
|
|
@ -2,25 +2,25 @@
|
||||||
+ // MIR for `map` after SimplifyLocals
|
+ // MIR for `map` after SimplifyLocals
|
||||||
|
|
||||||
fn map(_1: Option<Box<()>>) -> Option<Box<()>> {
|
fn map(_1: Option<Box<()>>) -> Option<Box<()>> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:8: 3:9
|
debug x => _1; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:1:8: 1:9
|
||||||
let mut _0: std::option::Option<std::boxed::Box<()>>; // return place in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:31: 3:46
|
let mut _0: std::option::Option<std::boxed::Box<()>>; // return place in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:1:31: 1:46
|
||||||
- let mut _2: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- let mut _2: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- let _3: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:14: 6:15
|
- let _3: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:14: 4:15
|
||||||
- let mut _4: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:25: 6:26
|
- let mut _4: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:25: 4:26
|
||||||
- let mut _5: bool; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _5: bool; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
- let mut _6: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _6: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
- let mut _7: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _7: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug x => ((_0 as Some).0: std::boxed::Box<()>); // in scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:14: 6:15
|
debug x => ((_0 as Some).0: std::boxed::Box<()>); // in scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:14: 4:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
- _5 = const false; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _5 = const false; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- _5 = const true; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _5 = const true; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- _2 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _2 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
_0 = move _1; // scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:20: 6:27
|
_0 = move _1; // scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:20: 4:27
|
||||||
- _6 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- _6 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
return; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:2: 8:2
|
return; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:2: 6:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,25 +2,25 @@
|
||||||
+ // MIR for `map` after SimplifyLocals
|
+ // MIR for `map` after SimplifyLocals
|
||||||
|
|
||||||
fn map(_1: Option<Box<()>>) -> Option<Box<()>> {
|
fn map(_1: Option<Box<()>>) -> Option<Box<()>> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:8: 3:9
|
debug x => _1; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:1:8: 1:9
|
||||||
let mut _0: std::option::Option<std::boxed::Box<()>>; // return place in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:31: 3:46
|
let mut _0: std::option::Option<std::boxed::Box<()>>; // return place in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:1:31: 1:46
|
||||||
- let mut _2: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- let mut _2: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- let _3: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:14: 6:15
|
- let _3: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:14: 4:15
|
||||||
- let mut _4: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:25: 6:26
|
- let mut _4: std::boxed::Box<()>; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:25: 4:26
|
||||||
- let mut _5: bool; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _5: bool; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
- let mut _6: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _6: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
- let mut _7: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- let mut _7: isize; // in scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug x => ((_0 as Some).0: std::boxed::Box<()>); // in scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:14: 6:15
|
debug x => ((_0 as Some).0: std::boxed::Box<()>); // in scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:14: 4:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
- _5 = const false; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _5 = const false; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- _5 = const true; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _5 = const true; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
- _2 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:5:9: 5:13
|
- _2 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:3:9: 3:13
|
||||||
_0 = move _1; // scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:20: 6:27
|
_0 = move _1; // scope 1 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:4:20: 4:27
|
||||||
- _6 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:1: 8:2
|
- _6 = discriminant(_1); // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:1: 6:2
|
||||||
return; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:8:2: 8:2
|
return; // scope 0 at $DIR/simplify-locals-removes-unused-discriminant-reads.rs:6:2: 6:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
// compile-flags: -Zunsound-mir-opts
|
|
||||||
// EMIT_MIR simplify_try.try_identity.SimplifyArmIdentity.diff
|
// EMIT_MIR simplify_try.try_identity.SimplifyArmIdentity.diff
|
||||||
// EMIT_MIR simplify_try.try_identity.SimplifyBranchSame.after.mir
|
// EMIT_MIR simplify_try.try_identity.SimplifyBranchSame.after.mir
|
||||||
// EMIT_MIR simplify_try.try_identity.SimplifyLocals.after.mir
|
// EMIT_MIR simplify_try.try_identity.SimplifyLocals.after.mir
|
||||||
|
|
|
@ -2,35 +2,35 @@
|
||||||
+ // MIR for `try_identity` after DestinationPropagation
|
+ // MIR for `try_identity` after DestinationPropagation
|
||||||
|
|
||||||
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:7:17: 7:18
|
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:6:17: 6:18
|
||||||
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:7:41: 7:57
|
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:6:41: 6:57
|
||||||
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:9:8: 9:9
|
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:8:8: 8:9
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
}
|
}
|
||||||
scope 2 {
|
scope 2 {
|
||||||
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:8:14: 8:15
|
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
scope 3 {
|
scope 3 {
|
||||||
scope 7 {
|
scope 7 {
|
||||||
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
||||||
}
|
}
|
||||||
scope 8 {
|
scope 8 {
|
||||||
debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scope 4 {
|
scope 4 {
|
||||||
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:8:13: 8:15
|
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
scope 5 {
|
scope 5 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -40,33 +40,33 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
- StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
- StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
- StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
- StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
- _4 = _1; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
- _4 = _1; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
- _3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
- _3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- _5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- _5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
+ nop; // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
+ nop; // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
+ nop; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
+ nop; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
+ _0 = _1; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
+ _0 = _1; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
+ nop; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
+ nop; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
+ nop; // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
+ nop; // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
+ _5 = discriminant(_0); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
+ _5 = discriminant(_0); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
goto -> bb1; // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
goto -> bb1; // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb1: {
|
bb1: {
|
||||||
- _0 = move _3; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
- _0 = move _3; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
- StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:8:15: 8:16
|
- StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:7:15: 7:16
|
||||||
+ nop; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
+ nop; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
+ nop; // scope 0 at $DIR/simplify_try.rs:8:15: 8:16
|
+ nop; // scope 0 at $DIR/simplify_try.rs:7:15: 7:16
|
||||||
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:10:1: 10:2
|
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:9:1: 9:2
|
||||||
goto -> bb2; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
goto -> bb2; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
|
|
||||||
bb2: {
|
bb2: {
|
||||||
return; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
return; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,25 +2,25 @@
|
||||||
+ // MIR for `try_identity` after SimplifyArmIdentity
|
+ // MIR for `try_identity` after SimplifyArmIdentity
|
||||||
|
|
||||||
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:7:17: 7:18
|
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:6:17: 6:18
|
||||||
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:7:41: 7:57
|
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:6:41: 6:57
|
||||||
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:9:8: 9:9
|
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:8:8: 8:9
|
||||||
scope 1 {
|
scope 1 {
|
||||||
- debug y => _2; // in scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
- debug y => _2; // in scope 1 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
+ debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
+ debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
}
|
}
|
||||||
scope 2 {
|
scope 2 {
|
||||||
- debug err => _6; // in scope 2 at $DIR/simplify_try.rs:8:14: 8:15
|
- debug err => _6; // in scope 2 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
+ debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:8:14: 8:15
|
+ debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
scope 3 {
|
scope 3 {
|
||||||
scope 7 {
|
scope 7 {
|
||||||
- debug t => _9; // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
- debug t => _9; // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
||||||
|
@ -29,13 +29,13 @@
|
||||||
scope 8 {
|
scope 8 {
|
||||||
- debug v => _8; // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- debug v => _8; // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
+ debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
+ debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scope 4 {
|
scope 4 {
|
||||||
- debug val => _10; // in scope 4 at $DIR/simplify_try.rs:8:13: 8:15
|
- debug val => _10; // in scope 4 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
+ debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:8:13: 8:15
|
+ debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
scope 5 {
|
scope 5 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,55 +44,55 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
_4 = _1; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
_4 = _1; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
_3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
_3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
_5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
_5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
switchInt(move _5) -> [0_isize: bb1, otherwise: bb2]; // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
switchInt(move _5) -> [0_isize: bb1, otherwise: bb2]; // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb1: {
|
bb1: {
|
||||||
- StorageLive(_10); // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
- StorageLive(_10); // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
- _10 = ((_3 as Ok).0: u32); // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
- _10 = ((_3 as Ok).0: u32); // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
- _2 = _10; // scope 5 at $DIR/simplify_try.rs:8:13: 8:15
|
- _2 = _10; // scope 5 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
- StorageDead(_10); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageDead(_10); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
+ _0 = move _3; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
+ _0 = move _3; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:8:15: 8:16
|
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:7:15: 7:16
|
||||||
- StorageLive(_11); // scope 1 at $DIR/simplify_try.rs:9:8: 9:9
|
- StorageLive(_11); // scope 1 at $DIR/simplify_try.rs:8:8: 8:9
|
||||||
- _11 = _2; // scope 1 at $DIR/simplify_try.rs:9:8: 9:9
|
- _11 = _2; // scope 1 at $DIR/simplify_try.rs:8:8: 8:9
|
||||||
- ((_0 as Ok).0: u32) = move _11; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
- ((_0 as Ok).0: u32) = move _11; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
- discriminant(_0) = 0; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
- discriminant(_0) = 0; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
- StorageDead(_11); // scope 1 at $DIR/simplify_try.rs:9:9: 9:10
|
- StorageDead(_11); // scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
||||||
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:10:1: 10:2
|
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:9:1: 9:2
|
||||||
goto -> bb3; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
goto -> bb3; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
|
|
||||||
bb2: {
|
bb2: {
|
||||||
- StorageLive(_6); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageLive(_6); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- _6 = ((_3 as Err).0: i32); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- _6 = ((_3 as Err).0: i32); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- StorageLive(_8); // scope 3 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageLive(_8); // scope 3 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- StorageLive(_9); // scope 3 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageLive(_9); // scope 3 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- _9 = _6; // scope 3 at $DIR/simplify_try.rs:8:14: 8:15
|
- _9 = _6; // scope 3 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- _8 = move _9; // scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
- _8 = move _9; // scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
||||||
- StorageDead(_9); // scope 3 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageDead(_9); // scope 3 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- StorageLive(_12); // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- StorageLive(_12); // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- _12 = move _8; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- _12 = move _8; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- ((_0 as Err).0: i32) = move _12; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- ((_0 as Err).0: i32) = move _12; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- discriminant(_0) = 1; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- discriminant(_0) = 1; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- StorageDead(_12); // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
- StorageDead(_12); // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
- StorageDead(_8); // scope 3 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageDead(_8); // scope 3 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
- StorageDead(_6); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
- StorageDead(_6); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
+ _0 = move _3; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
+ _0 = move _3; // scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:8:15: 8:16
|
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:7:15: 7:16
|
||||||
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:10:1: 10:2
|
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:9:1: 9:2
|
||||||
goto -> bb3; // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
goto -> bb3; // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb3: {
|
bb3: {
|
||||||
return; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
return; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
// MIR for `try_identity` after SimplifyBranchSame
|
// MIR for `try_identity` after SimplifyBranchSame
|
||||||
|
|
||||||
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:7:17: 7:18
|
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:6:17: 6:18
|
||||||
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:7:41: 7:57
|
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:6:41: 6:57
|
||||||
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:9:8: 9:9
|
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:8:8: 8:9
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
}
|
}
|
||||||
scope 2 {
|
scope 2 {
|
||||||
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:8:14: 8:15
|
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
scope 3 {
|
scope 3 {
|
||||||
scope 7 {
|
scope 7 {
|
||||||
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
||||||
}
|
}
|
||||||
scope 8 {
|
scope 8 {
|
||||||
debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
debug v => ((_0 as Err).0: i32); // in scope 8 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:8:14: 8:15
|
let mut _12: i32; // in scope 8 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scope 4 {
|
scope 4 {
|
||||||
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:8:13: 8:15
|
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
scope 5 {
|
scope 5 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -38,24 +38,24 @@ fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:8:9: 8:10
|
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:8:13: 8:15
|
StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
_4 = _1; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
_4 = _1; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
_3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
_3 = move _4; // scope 6 at $SRC_DIR/core/src/result.rs:LL:COL
|
||||||
StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
_5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
_5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
goto -> bb1; // scope 0 at $DIR/simplify_try.rs:8:14: 8:15
|
goto -> bb1; // scope 0 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
}
|
}
|
||||||
|
|
||||||
bb1: {
|
bb1: {
|
||||||
_0 = move _3; // scope 1 at $DIR/simplify_try.rs:9:5: 9:10
|
_0 = move _3; // scope 1 at $DIR/simplify_try.rs:8:5: 8:10
|
||||||
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:8:15: 8:16
|
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:7:15: 7:16
|
||||||
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:10:1: 10:2
|
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:9:1: 9:2
|
||||||
goto -> bb2; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
goto -> bb2; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
|
|
||||||
bb2: {
|
bb2: {
|
||||||
return; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
return; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
// MIR for `try_identity` after SimplifyLocals
|
// MIR for `try_identity` after SimplifyLocals
|
||||||
|
|
||||||
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i32> {
|
||||||
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:7:17: 7:18
|
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:6:17: 6:18
|
||||||
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:7:41: 7:57
|
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:6:41: 6:57
|
||||||
scope 1 {
|
scope 1 {
|
||||||
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:8:9: 8:10
|
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:7:9: 7:10
|
||||||
}
|
}
|
||||||
scope 2 {
|
scope 2 {
|
||||||
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:8:14: 8:15
|
debug err => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:7:14: 7:15
|
||||||
scope 3 {
|
scope 3 {
|
||||||
scope 7 {
|
scope 7 {
|
||||||
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
debug t => ((_0 as Err).0: i32); // in scope 7 at $SRC_DIR/core/src/convert/mod.rs:LL:COL
|
||||||
|
@ -18,7 +18,7 @@ fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scope 4 {
|
scope 4 {
|
||||||
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:8:13: 8:15
|
debug val => ((_0 as Ok).0: u32); // in scope 4 at $DIR/simplify_try.rs:7:13: 7:15
|
||||||
scope 5 {
|
scope 5 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ fn try_identity(_1: std::result::Result<u32, i32>) -> std::result::Result<u32, i
|
||||||
}
|
}
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
_0 = _1; // scope 0 at $DIR/simplify_try.rs:8:13: 8:14
|
_0 = _1; // scope 0 at $DIR/simplify_try.rs:7:13: 7:14
|
||||||
return; // scope 0 at $DIR/simplify_try.rs:10:2: 10:2
|
return; // scope 0 at $DIR/simplify_try.rs:9:2: 9:2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue