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())
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())
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits