[Lldb-commits] [lldb] [lldb] Implement WebAssembly debugging (PR #77949)

Xu Jun via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 20 19:43:21 PST 2024


================
@@ -24,17 +24,33 @@ def format_register_value(val):
     return result
 
 
+def make_code_address(module_id, offset):
+    return 0x4000000000000000 | (module_id << 32) | offset
+
----------------
xujuntwt95329 wrote:

@paolosevMSFT Seems the rule require two empty lines before class definition

```suggestion


```

https://github.com/llvm/llvm-project/pull/77949


More information about the lldb-commits mailing list