[Lldb-commits] [PATCH] D110013: [lldb][crashlog] Avoid specifying arch for image when a UUID is present
Vedant Kumar via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 20 10:24:05 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe31b2d7d7be9: [lldb][crashlog] Avoid specifying arch for image when a UUID is present (authored by vsk).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110013/new/
https://reviews.llvm.org/D110013
Files:
lldb/examples/python/symbolication.py
Index: lldb/examples/python/symbolication.py
===================================================================
--- lldb/examples/python/symbolication.py
+++ lldb/examples/python/symbolication.py
@@ -379,7 +379,7 @@
return None
resolved_path = self.get_resolved_path()
self.module = target.AddModule(
- resolved_path, str(self.arch), uuid_str, self.symfile)
+ resolved_path, None, uuid_str, self.symfile)
if not self.module:
return 'error: unable to get module for (%s) "%s"' % (
self.arch, self.get_resolved_path())
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110013.373643.patch
Type: text/x-patch
Size: 662 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210920/3d601a7e/attachment-0001.bin>
More information about the lldb-commits
mailing list