diff options
Diffstat (limited to 'plugins/arm/v7/fetch.c')
-rw-r--r-- | plugins/arm/v7/fetch.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/arm/v7/fetch.c b/plugins/arm/v7/fetch.c index 005a48d..bed0dbc 100644 --- a/plugins/arm/v7/fetch.c +++ b/plugins/arm/v7/fetch.c @@ -60,7 +60,7 @@ void help_fetching_with_instruction_b_with_orig(GArchInstruction *instr, GArchPr const mrange_t *range; /* Emplacementt d'instruction */ virt_t pc; /* Position dans l'exécution */ GImmOperand *op; /* Opérande numérique en place */ - int32_t offset; /* Décallage encodé en dur */ + int32_t offset; /* Décalage encodé en dur */ virt_t target; /* Adresse virtuelle visée */ range = g_arch_instruction_get_range(instr); @@ -125,7 +125,7 @@ void help_fetching_with_instruction_bl_with_orig(GArchInstruction *instr, GArchP const mrange_t *range; /* Emplacementt d'instruction */ virt_t pc; /* Position dans l'exécution */ GImmOperand *op; /* Opérande numérique en place */ - int32_t offset; /* Décallage encodé en dur */ + int32_t offset; /* Décalage encodé en dur */ virt_t target; /* Adresse virtuelle visée */ range = g_arch_instruction_get_range(instr); @@ -190,7 +190,7 @@ void help_fetching_with_instruction_blx_with_dest(GArchInstruction *instr, GArch const mrange_t *range; /* Emplacementt d'instruction */ virt_t pc; /* Position dans l'exécution */ GImmOperand *op; /* Opérande numérique en place */ - int32_t offset; /* Décallage encodé en dur */ + int32_t offset; /* Décalage encodé en dur */ virt_t target; /* Adresse virtuelle visée */ range = g_arch_instruction_get_range(instr); @@ -315,7 +315,7 @@ void help_fetching_with_instruction_cb_n_z(GArchInstruction *instr, GArchProcess const mrange_t *range; /* Emplacementt d'instruction */ virt_t pc; /* Position dans l'exécution */ GImmOperand *op; /* Opérande numérique en place */ - uint32_t offset; /* Décallage encodé en dur */ + uint32_t offset; /* Décalage encodé en dur */ virt_t target; /* Adresse virtuelle visée */ range = g_arch_instruction_get_range(instr); @@ -366,7 +366,7 @@ void help_fetching_with_instruction_ldr_literal_with_orig(GArchInstruction *inst const mrange_t *range; /* Emplacementt d'instruction */ phys_t phys_pc; /* Position dans l'exécution */ GArchOperand *op; /* Opérande de surcouche */ - uint32_t offset; /* Décallage encodé en dur */ + uint32_t offset; /* Décalage encodé en dur */ bool ret; /* Bilan d'une récupération */ off_t val_offset; /* Position de valeur à lire */ vmpa2t loaded_addr; /* Adresse de valeur chargée */ |