[Lldb-commits] [PATCH] D41702: Add SysV Abi for PPC64le
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 17 10:12:10 PST 2018
clayborg added a comment.
Looks nice. Only nit is we probably don't need the m_endian member variable. See inlined comment.
================
Comment at: source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h:114
+
+ lldb::ByteOrder m_endian;
};
----------------
Most other code uses "m_byte_order" as the name. That being said, you can always just ask the process since it is store in the lldb_private::ABI class so you really don't need to store it here if you don't want to, you could add an accessor:
```
lldb::ByteOrder GetByteOrder() const { return GetProcessSP()->GetByteOrder(); }
```
https://reviews.llvm.org/D41702
More information about the lldb-commits
mailing list