[Lldb-commits] [lldb] [lldb][Progress] Separate title and details (PR #77547)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 10 10:29:05 PST 2024
================
@@ -519,8 +519,7 @@ void SymbolFileDWARF::InitializeObject() {
if (apple_names.GetByteSize() > 0 || apple_namespaces.GetByteSize() > 0 ||
apple_types.GetByteSize() > 0 || apple_objc.GetByteSize() > 0) {
- Progress progress(llvm::formatv("Loading Apple DWARF index for {0}",
- module_desc.GetData()));
+ Progress progress("Loading Apple DWARF index", module_desc.GetData());
----------------
chelcassanova wrote:
This can be removed, I also have to update the progress report for ELF files to match the rest of the changes here 😅
https://github.com/llvm/llvm-project/pull/77547
More information about the lldb-commits
mailing list