]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_mir_transform/src/unreachable_prop.rs
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / compiler / rustc_mir_transform / src / unreachable_prop.rs
index 06deca2fffb4889cc447878136b545a0243de852..d4b1cfe433723c26157c035d3a66a07bfe8fb0bf 100644 (file)
@@ -87,7 +87,7 @@ fn remove_successors<'tcx, F>(
                 // unless otherwise is unreachable, in which case deleting a normal branch causes it to be merged with
                 // the otherwise, keeping its unreachable.
                 // This looses information about reachability causing worse codegen.
-                // For example (see src/test/codegen/match-optimizes-away.rs)
+                // For example (see tests/codegen/match-optimizes-away.rs)
                 //
                 // pub enum Two { A, B }
                 // pub fn identity(x: Two) -> Two {