[Lldb-commits] [lldb] [lldb] Add some vector operations to the IRInterpreter (PR #155000)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 4 23:55:22 PDT 2025
================
@@ -30,9 +30,14 @@ class ArchitecturePPC64 : public Architecture {
void AdjustBreakpointAddress(const Symbol &func,
Address &addr) const override;
+ lldb::ByteOrder GetVectorElementOrder() const override;
+
private:
static std::unique_ptr<Architecture> Create(const ArchSpec &arch);
- ArchitecturePPC64() = default;
+ ArchitecturePPC64(lldb::ByteOrder vector_element_order)
----------------
Michael137 wrote:
Why was PPC64 important to address as part of this PR? Is it because it's the only big-endian architecture plugin and you want to ensure we error out appropriately?
https://github.com/llvm/llvm-project/pull/155000
More information about the lldb-commits
mailing list