[Lldb-commits] [lldb] [RISCV-LLDB] RISCV feature attribute support and allows overriding additional(default) feature (PR #147990)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 31 09:20:47 PDT 2025
================
@@ -548,6 +557,9 @@ class ArchSpec {
// these are application specific extensions like micromips, mips16 etc.
uint32_t m_flags = 0;
+ // Holds the additional disassembly feature string.
+ std::string m_additional_disassembly_feature_str;
----------------
JDevlieghere wrote:
Can we make this less verbose by dropping the `additional` part?
```suggestion
std::string m_disassembly_feature_str;
```
https://github.com/llvm/llvm-project/pull/147990
More information about the lldb-commits
mailing list