Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/docs/resources/lldbgdbremote.md
Original file line number Diff line number Diff line change
Expand Up @@ -2490,7 +2490,7 @@ stack traces.

Get the value of a Wasm global variable for the given frame index at the given
variable index. The indexes are encoded as base 10. The result is a hex-encoded
address from where to read the value.
little-endian value of the global.

```
send packet: $qWasmGlobal:0;2#cb
Expand All @@ -2505,7 +2505,7 @@ variables.

Get the value of a Wasm function argument or local variable for the given frame
index at the given variable index. The indexes are encoded as base 10. The
result is a hex-encoded address from where to read the value.
result is a hex-encoded little-endian value of the local.


```
Expand All @@ -2521,7 +2521,7 @@ variables.

Get the value of a Wasm local variable from the Wasm operand stack, for the
given frame index at the given variable index. The indexes are encoded as base
10. The result is a hex-encoded address from where to read value.
10. The result is a hex-encoded little-endian value from the stack at the given index.

```
send packet: $qWasmStackValue:0;2#cb
Expand Down
Loading