[Lldb-commits] [lldb] [lldb] Added a warning in case of instruction decode failure (PR #164413)
Timur Golubovich via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 22 08:03:27 PDT 2025
================
@@ -41,6 +41,20 @@ def test_memory_read_c_string(self):
" Consider increasing the maximum read length.",
)
+ @skipIf(archs=no_match("^(riscv|aarch64).*"))
+ def test_riscv_decode_failure(self):
+ """Test the 'memory read' command with instruction format."""
+ self.build_run_stop()
+
+ # assume that 0xffffffff is invalid instruction in RISC-V and AArch64
----------------
tgs-sc wrote:
Addressed
https://github.com/llvm/llvm-project/pull/164413
More information about the lldb-commits
mailing list