summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/casts.roundtrip.PreCodegen.after.mir
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/casts.roundtrip.PreCodegen.after.mir')
-rw-r--r--tests/mir-opt/casts.roundtrip.PreCodegen.after.mir15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/mir-opt/casts.roundtrip.PreCodegen.after.mir b/tests/mir-opt/casts.roundtrip.PreCodegen.after.mir
deleted file mode 100644
index f0c35fe97..000000000
--- a/tests/mir-opt/casts.roundtrip.PreCodegen.after.mir
+++ /dev/null
@@ -1,15 +0,0 @@
-// MIR for `roundtrip` after PreCodegen
-
-fn roundtrip(_1: *const u8) -> *const u8 {
- debug x => _1;
- let mut _0: *const u8;
- let mut _2: *mut u8;
-
- bb0: {
- StorageLive(_2);
- _2 = _1 as *mut u8 (PtrToPtr);
- _0 = move _2 as *const u8 (PointerCoercion(MutToConstPointer));
- StorageDead(_2);
- return;
- }
-}