]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / compiler / rustc_mir_dataflow / src / impls / storage_liveness.rs
index 896377f2bc30714064280ef855b130117f7c44b5..60cde6546dcfc62d2a7c0e5be2fa7e999d463869 100644 (file)
@@ -134,11 +134,6 @@ impl<'mir, 'tcx> crate::GenKillAnalysis<'tcx> for MaybeRequiresStorage<'mir, 'tc
             | StatementKind::SetDiscriminant { box place, .. } => {
                 trans.gen(place.local);
             }
-            StatementKind::LlvmInlineAsm(asm) => {
-                for place in &*asm.outputs {
-                    trans.gen(place.local);
-                }
-            }
 
             // Nothing to do for these. Match exhaustively so this fails to compile when new
             // variants are added.