mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
rustc_codegen_llvm: don't generate static and vtable debuginfo for -Cdebuginfo=1.
This commit is contained in:
parent
c923f045ce
commit
d6f4a2fbf9
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user