about summary refs log tree commit diff
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
commit1c389322d226db421892abb64e0730b60eb15712 (patch)
tree74d786002477eb9e4bfc41af860a7ed9d99bdea3
parent64012a1c2e386f0b34516106a92d84b45492ef0a (diff)
debuginfo: Refactor debuginfo generation for types -- Rename DebugInfoMethods::create_vtable_metadata() to DebugInfoMethods::create_vtable_debuginfo()
-rw-r--r--src/debuginfo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debuginfo.rs b/src/debuginfo.rs
index 31959fa19c5..266759ed6cf 100644
--- a/src/debuginfo.rs
+++ b/src/debuginfo.rs
@@ -31,7 +31,7 @@ impl<'a, 'gcc, 'tcx> DebugInfoBuilderMethods for Builder<'a, 'gcc, 'tcx> {
 }
 
 impl<'gcc, 'tcx> DebugInfoMethods<'tcx> for CodegenCx<'gcc, 'tcx> {
-    fn create_vtable_metadata(&self, _ty: Ty<'tcx>, _trait_ref: Option<PolyExistentialTraitRef<'tcx>>, _vtable: Self::Value) {
+    fn create_vtable_debuginfo(&self, _ty: Ty<'tcx>, _trait_ref: Option<PolyExistentialTraitRef<'tcx>>, _vtable: Self::Value) {
         // TODO(antoyo)
     }