rustc_codegen_llvm: don't generate static and vtable debuginfo for -Cdebuginfo=1.

This commit is contained in:
Eduard-Mihai Burtescu 2020-02-12 00:20:02 +02:00
parent c923f045ce
commit d6f4a2fbf9

View File

@ -2299,6 +2299,11 @@ pub fn create_global_var_metadata(cx: &CodegenCx<'ll, '_>, def_id: DefId, global
return;
}
// Only create type information if full debuginfo is enabled
if cx.sess().opts.debuginfo != DebugInfo::Full {
return;
}
let tcx = cx.tcx;
let attrs = tcx.codegen_fn_attrs(def_id);
@ -2358,6 +2363,11 @@ pub fn create_vtable_metadata(cx: &CodegenCx<'ll, 'tcx>, ty: Ty<'tcx>, vtable: &
return;
}
// Only create type information if full debuginfo is enabled
if cx.sess().opts.debuginfo != DebugInfo::Full {
return;
}
let type_metadata = type_metadata(cx, ty, rustc_span::DUMMY_SP);
unsafe {