[Lldb-commits] [lldb] [lldb-dap] Add: show return value on step out (PR #106907)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 12 17:07:28 PST 2025


================
@@ -663,6 +663,41 @@ def do_test_indexedVariables(self, enableSyntheticChildDebugging: bool):
         ]["variables"]
         self.verify_variables(verify_children, children)
 
+    def test_return_variables(self):
----------------
JDevlieghere wrote:

The arm64 ABI does not require restoring the memory return register value (x8) on exit from a function, so lldb can't reliably fetch memory return values. You'll need to skip this test on Darwin running on arm64. 

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


More information about the lldb-commits mailing list