diff options
3 files changed, 4 insertions, 4 deletions
diff --git a/src/test/mir-opt/dataflow-const-prop/cast.main.DataflowConstProp.diff b/src/test/mir-opt/dataflow-const-prop/cast.main.DataflowConstProp.diff index 950b0518e0b..a8f04c9fc7f 100644 --- a/src/test/mir-opt/dataflow-const-prop/cast.main.DataflowConstProp.diff +++ b/src/test/mir-opt/dataflow-const-prop/cast.main.DataflowConstProp.diff @@ -24,7 +24,7 @@ StorageLive(_5); // scope 1 at $DIR/cast.rs:+2:14: +2:16 _5 = &_1; // scope 1 at $DIR/cast.rs:+2:14: +2:16 - _4 = (*_5); // scope 1 at $DIR/cast.rs:+2:13: +2:16 -- _3 = move _4 as u8 (Misc); // scope 1 at $DIR/cast.rs:+2:13: +2:22 +- _3 = move _4 as u8 (IntToInt); // scope 1 at $DIR/cast.rs:+2:13: +2:22 + _4 = const 257_i32; // scope 1 at $DIR/cast.rs:+2:13: +2:16 + _3 = const 1_u8; // scope 1 at $DIR/cast.rs:+2:13: +2:22 StorageDead(_4); // scope 1 at $DIR/cast.rs:+2:21: +2:22 diff --git a/src/test/mir-opt/dataflow-const-prop/previous/cast.main.DataflowConstProp.diff b/src/test/mir-opt/dataflow-const-prop/previous/cast.main.DataflowConstProp.diff index fb346993d61..3fd9fb5331b 100644 --- a/src/test/mir-opt/dataflow-const-prop/previous/cast.main.DataflowConstProp.diff +++ b/src/test/mir-opt/dataflow-const-prop/previous/cast.main.DataflowConstProp.diff @@ -14,10 +14,10 @@ bb0: { StorageLive(_1); // scope 0 at $DIR/cast.rs:+1:9: +1:10 -- _1 = const 42_u8 as u32 (Misc); // scope 0 at $DIR/cast.rs:+1:13: +1:24 +- _1 = const 42_u8 as u32 (IntToInt); // scope 0 at $DIR/cast.rs:+1:13: +1:24 + _1 = const 42_u32; // scope 0 at $DIR/cast.rs:+1:13: +1:24 StorageLive(_2); // scope 1 at $DIR/cast.rs:+3:9: +3:10 -- _2 = const 42_u32 as u8 (Misc); // scope 1 at $DIR/cast.rs:+3:13: +3:24 +- _2 = const 42_u32 as u8 (IntToInt); // scope 1 at $DIR/cast.rs:+3:13: +3:24 + _2 = const 42_u8; // scope 1 at $DIR/cast.rs:+3:13: +3:24 _0 = const (); // scope 0 at $DIR/cast.rs:+0:11: +4:2 StorageDead(_2); // scope 1 at $DIR/cast.rs:+4:1: +4:2 diff --git a/src/test/mir-opt/dataflow-const-prop/previous/indirect.main.DataflowConstProp.diff b/src/test/mir-opt/dataflow-const-prop/previous/indirect.main.DataflowConstProp.diff index 461ed4d8922..80deb02c77f 100644 --- a/src/test/mir-opt/dataflow-const-prop/previous/indirect.main.DataflowConstProp.diff +++ b/src/test/mir-opt/dataflow-const-prop/previous/indirect.main.DataflowConstProp.diff @@ -13,7 +13,7 @@ bb0: { StorageLive(_1); // scope 0 at $DIR/indirect.rs:+1:9: +1:10 StorageLive(_2); // scope 0 at $DIR/indirect.rs:+1:13: +1:25 -- _2 = const 2_u32 as u8 (Misc); // scope 0 at $DIR/indirect.rs:+1:13: +1:25 +- _2 = const 2_u32 as u8 (IntToInt); // scope 0 at $DIR/indirect.rs:+1:13: +1:25 - _3 = CheckedAdd(_2, const 1_u8); // scope 0 at $DIR/indirect.rs:+1:13: +1:29 - assert(!move (_3.1: bool), "attempt to compute `{} + {}`, which would overflow", move _2, const 1_u8) -> bb1; // scope 0 at $DIR/indirect.rs:+1:13: +1:29 + _2 = const 2_u8; // scope 0 at $DIR/indirect.rs:+1:13: +1:25 |
