diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2022-02-08 15:31:09 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2022-02-08 15:31:09 +0100 |
| commit | ed21805aee9ad1abed5dc5157ac568e95fd84afb (patch) | |
| tree | 9f6e9973e98e142c4ffb94cfe78a6122f49db55a /compiler/rustc_codegen_ssa/src/debuginfo | |
| parent | fc7f419a63e4c98a928729d0ad59c426ccb84963 (diff) | |
| download | rust-ed21805aee9ad1abed5dc5157ac568e95fd84afb.tar.gz rust-ed21805aee9ad1abed5dc5157ac568e95fd84afb.zip | |
debuginfo: Bring back DW_AT_containing_type for vtables -- address review comments
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs index c1a378d74b2..3cb19c0eec6 100644 --- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs +++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs @@ -470,7 +470,7 @@ fn push_debuginfo_type_name<'tcx>( } pub enum VTableNameKind { - // Is the name for const/static holding the vtable? + // Is the name for the const/static holding the vtable? GlobalVariable, // Is the name for the type of the vtable? Type, |
