Skip to content

Commit 0f6e045

Browse files
authored
Merge pull request #3270 from apple/cherry-82679400-to-20210726
[lldb][crashlog] Avoid specifying arch for image when a UUID is present
2 parents 16eb777 + 5966f3e commit 0f6e045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/examples/python/symbolication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def add_module(self, target):
379379
return None
380380
resolved_path = self.get_resolved_path()
381381
self.module = target.AddModule(
382-
resolved_path, str(self.arch), uuid_str, self.symfile)
382+
resolved_path, None, uuid_str, self.symfile)
383383
if not self.module:
384384
return 'error: unable to get module for (%s) "%s"' % (
385385
self.arch, self.get_resolved_path())

0 commit comments

Comments
 (0)