[Lldb-commits] [lldb] [lldb][riscv] Fix setting breakpoint for undecoded instruction (PR #90075)
via lldb-commits
lldb-commits at lists.llvm.org
Mon May 27 08:37:49 PDT 2024
================
@@ -99,6 +100,8 @@ class EmulateInstructionRISCV : public EmulateInstruction {
private:
/// Last decoded instruction from m_opcode
DecodeResult m_decoded;
+ /// Last tried to be decoded instruction expected size.
----------------
ita-sc wrote:
Well, I tried to emphasize that even if we failed to fully decode instruction, we are still able to fill this information. I'll change to
```
Last decoded instruction size estimate.
```
https://github.com/llvm/llvm-project/pull/90075
More information about the lldb-commits
mailing list