aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-08-30 18:08:34 +0200
committerMichael Tokarev <mjt@tls.msk.ru>2023-09-08 13:08:52 +0300
commitd417e2214d3adfd862bdf7afb3392e7f9de7fc05 (patch)
treea08b91cdfa309d0da0f64d74999959b9c641ac49
parent4d841daeb2098718244044a695965cc3254265c7 (diff)
downloadqemu-d417e2214d3adfd862bdf7afb3392e7f9de7fc05.zip
qemu-d417e2214d3adfd862bdf7afb3392e7f9de7fc05.tar.gz
qemu-d417e2214d3adfd862bdf7afb3392e7f9de7fc05.tar.bz2
accel/tcg: Fix typo in translator_io_start() description
Missed while reviewing commit dfd1b81274 ("accel/tcg: Introduce translator_io_start"). Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--include/exec/translator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/translator.h b/include/exec/translator.h
index a53d324..4e17c4f 100644
--- a/include/exec/translator.h
+++ b/include/exec/translator.h
@@ -159,7 +159,7 @@ bool translator_use_goto_tb(DisasContextBase *db, vaddr dest);
* translator_io_start
* @db: Disassembly context
*
- * If icount is enabled, set cpu->can_to_io, adjust db->is_jmp to
+ * If icount is enabled, set cpu->can_do_io, adjust db->is_jmp to
* DISAS_TOO_MANY if it is still DISAS_NEXT, and return true.
* Otherwise return false.
*/