diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2022-03-14 17:11:58 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2022-03-14 17:25:17 +0100 |
| commit | 9580a7115d2d75514f0b329a29fafaa3796bd950 (patch) | |
| tree | d3939b8140e302c4bd013ef5f40da3f79ea0744a /compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums | |
| parent | 19707b0ff2c0beb80f77eaa7274f4588a506309d (diff) | |
| download | rust-9580a7115d2d75514f0b329a29fafaa3796bd950.tar.gz rust-9580a7115d2d75514f0b329a29fafaa3796bd950.zip | |
debuginfo: Refactor debuginfo generation for types -- Address review comments.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs index 19f0ce54250..1eafa9501c4 100644 --- a/compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs +++ b/compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs @@ -126,6 +126,8 @@ fn tag_base_type<'ll, 'tcx>( // If the niche is the NULL value of a reference, then `discr_enum_ty` will be // a RawPtr. CodeView doesn't know what to do with enums whose base type is a // pointer so we fix this up to just be `usize`. + // DWARF might be able to deal with this but with an integer type we are on + // the safe side there too. cx.data_layout().ptr_sized_integer() } } |
