[Lldb-commits] [PATCH] D134656: [LLDB][NativePDB] Add class/union layout bit size.
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 27 02:34:31 PDT 2022
DavidSpickett added inline comments.
================
Comment at: lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp:53
llvm::cantFail(TypeDeserializer::deserializeAs<ClassRecord>(cvt, m_cvr.cr));
+ m_layout.bit_size = m_cvr.cr.getSize() * 8;
break;
----------------
Drive by comment: you have an extra space at the start of the added lines. (unless phabricator is just indenting it for effect)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D134656/new/
https://reviews.llvm.org/D134656
More information about the lldb-commits
mailing list