diff options
Diffstat (limited to 'tests/mir-opt/casts.redundant.InstSimplify.diff')
-rw-r--r-- | tests/mir-opt/casts.redundant.InstSimplify.diff | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/mir-opt/casts.redundant.InstSimplify.diff b/tests/mir-opt/casts.redundant.InstSimplify.diff deleted file mode 100644 index f5ea78aec..000000000 --- a/tests/mir-opt/casts.redundant.InstSimplify.diff +++ /dev/null @@ -1,25 +0,0 @@ -- // MIR for `redundant` before InstSimplify -+ // MIR for `redundant` after InstSimplify - - fn redundant(_1: *const &u8) -> *const &u8 { - debug x => _1; - let mut _0: *const &u8; - let mut _2: *const &u8; - let mut _3: *const &u8; - scope 1 (inlined generic_cast::<&u8, &u8>) { - debug x => _1; - } - - bb0: { - StorageLive(_2); - StorageLive(_3); - _3 = _1; -- _2 = _3 as *const &u8 (PtrToPtr); -+ _2 = _3; - StorageDead(_3); - _0 = _2; - StorageDead(_2); - return; - } - } - |