diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2022-03-14 17:18:30 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2022-03-14 17:25:24 +0100 |
| commit | 584855e03d5b42d34cc259ab4ef3d01a637ad1c6 (patch) | |
| tree | 02e0b9f9ac9d42154b052dfdc1de4d623652aeff /compiler/rustc_codegen_gcc/src | |
| parent | 9580a7115d2d75514f0b329a29fafaa3796bd950 (diff) | |
| download | rust-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_gcc/src')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/debuginfo.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/debuginfo.rs b/compiler/rustc_codegen_gcc/src/debuginfo.rs index 31959fa19c5..266759ed6cf 100644 --- a/compiler/rustc_codegen_gcc/src/debuginfo.rs +++ b/compiler/rustc_codegen_gcc/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) } |
