monitor/hmp: Remove target_long uses in memory_dump()
Pass a plain vaddr type to express virtual address. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Message-Id: <20251229231546.50604-5-philmd@linaro.org>
This commit is contained in:
@@ -232,7 +232,7 @@ void hmp_memory_dump(Monitor *mon, const QDict *qdict)
|
||||
int count = qdict_get_int(qdict, "count");
|
||||
int format = qdict_get_int(qdict, "format");
|
||||
int size = qdict_get_int(qdict, "size");
|
||||
target_long addr = qdict_get_int(qdict, "addr");
|
||||
vaddr addr = qdict_get_int(qdict, "addr");
|
||||
|
||||
memory_dump(mon, count, format, size, addr, false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user