about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo>2022-03-14 17:18:30 +0100
committerMichael Woerister <michaelwoerister@posteo>2022-03-14 17:25:24 +0100
commit584855e03d5b42d34cc259ab4ef3d01a637ad1c6 (patch)
tree02e0b9f9ac9d42154b052dfdc1de4d623652aeff /compiler/rustc_codegen_llvm/src
parent9580a7115d2d75514f0b329a29fafaa3796bd950 (diff)
downloadrust-584855e03d5b42d34cc259ab4ef3d01a637ad1c6.tar.gz
rust-584855e03d5b42d34cc259ab4ef3d01a637ad1c6.zip
debuginfo: Refactor debuginfo generation for types -- Rename DebugInfoMethods::create_vtable_metadata() to DebugInfoMethods::create_vtable_debuginfo()
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
index 6cb8f7863a9..4e6d3f88e67 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
@@ -555,7 +555,7 @@ impl<'ll, 'tcx> DebugInfoMethods<'tcx> for CodegenCx<'ll, 'tcx> {
         unsafe { llvm::LLVMRustDIBuilderCreateDebugLocation(line, col, scope, inlined_at) }
     }
 
-    fn create_vtable_metadata(
+    fn create_vtable_debuginfo(
         &self,
         ty: Ty<'tcx>,
         trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,