Skip to content

Commit

Permalink
debuginfo: Refactor debuginfo generation for types -- Rename DebugInf…
Browse files Browse the repository at this point in the history
…oMethods::create_vtable_metadata() to DebugInfoMethods::create_vtable_debuginfo()
  • Loading branch information
michaelwoerister committed Mar 14, 2022
1 parent 64012a1 commit 1c38932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debuginfo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 1c38932

Please sign in to comment.