Skip to content

Commit 26be83b

Browse files
committed
Revert "Rollup merge of rust-lang#79968 - bjorn3:better_drop_glue_debuginfo, r=matthewjasper"
This reverts commit f90c7f0, reversing changes made to 5c0f5b6.
1 parent fc9944f commit 26be83b

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

compiler/rustc_symbol_mangling/src/legacy.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,7 @@ pub(super) fn mangle(
5656
let hash = get_symbol_hash(tcx, instance, instance_ty, instantiating_crate);
5757

5858
let mut printer = SymbolPrinter { tcx, path: SymbolPath::new(), keep_within_component: false }
59-
.print_def_path(
60-
def_id,
61-
if let ty::InstanceDef::DropGlue(_, _) = instance.def {
62-
// Add the name of the dropped type to the symbol name
63-
&*instance.substs
64-
} else {
65-
&[]
66-
},
67-
)
59+
.print_def_path(def_id, &[])
6860
.unwrap();
6961

7062
if let ty::InstanceDef::VtableShim(..) = instance.def {

0 commit comments

Comments
 (0)