[Lldb-commits] [PATCH] D75750: WIP: [lldb] integrate debuginfod
Konrad Wilhelm Kleine via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 9 02:39:35 PDT 2020
kwk marked an inline comment as done.
kwk added a comment.
@labath thank you for your early feedback. It was helpful even though this is still a work in progress.
================
Comment at: lldb/source/Host/common/DebugInfoD.cpp:43-67
+UUID getBuildIDFromModule(const ModuleSP &module) {
+ UUID buildID;
+
+ if (!module)
+ return buildID;
+
+ const FileSpec &moduleFileSpec = module->GetFileSpec();
----------------
labath wrote:
> How is all this different from `module->GetUUID()` ?
I didn't know about that :) . Thank you!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75750/new/
https://reviews.llvm.org/D75750
More information about the lldb-commits
mailing list