[Lldb-commits] [lldb] [lldb] Add WebAssembly Process Plugin (PR #150143)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 24 08:38:00 PDT 2025
================
@@ -2076,6 +2076,12 @@ size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target,
trap_opcode_size = sizeof(g_loongarch_opcode);
} break;
+ case llvm::Triple::wasm32: {
+ static const uint8_t g_wasm_opcode[] = {0x00}; // unreachable
----------------
JDevlieghere wrote:
It's part of the spec, I'll try to find a link to include here.
https://github.com/llvm/llvm-project/pull/150143
More information about the lldb-commits
mailing list