exec-all: fix typos in TranslationBlock's documentation

Backports commit eb5e2b9e3b141de0c435eedc31c26cbbdefbee1b from qemu
This commit is contained in:
Emilio G. Cota 2018-03-05 02:10:27 -05:00 committed by Lioncash
parent 921c71a9ee
commit 68ddc0cb08
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -233,7 +233,7 @@ struct TranslationBlock {
/* The following data are used to directly call another TB from
* the code of this one. This can be done either by emitting direct or
* indirect native jump instructions. These jumps are reset so that the TB
* just continue its execution. The TB can be linked to another one by
* just continues its execution. The TB can be linked to another one by
* setting one of the jump targets (or patching the jump instruction). Only
* two of such jumps are supported.
*/
@ -241,7 +241,7 @@ struct TranslationBlock {
#define TB_JMP_RESET_OFFSET_INVALID 0xffff /* indicates no jump generated */
uintptr_t jmp_target_arg[2]; /* target address or offset */
/* Each TB has an assosiated circular list of TBs jumping to this one.
/* Each TB has an associated circular list of TBs jumping to this one.
* jmp_list_first points to the first TB jumping to this one.
* jmp_list_next is used to point to the next TB in a list.
* Since each TB can have two jumps, it can participate in two lists.