summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/operand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/dalvik/operand.c')
-rw-r--r--src/arch/dalvik/operand.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/arch/dalvik/operand.c b/src/arch/dalvik/operand.c
index 2b64a10..f6f654e 100644
--- a/src/arch/dalvik/operand.c
+++ b/src/arch/dalvik/operand.c
@@ -66,9 +66,9 @@ static void g_dalvik_operand_init(GDalvikOperand *);
/* Définition d'un opérande visant un registre Dalvik (instance) */
struct _GDalvikRegisterOperand
{
- GDalvikOperand parent; /* Instance parente */
+ GDalvikOperand parent; /* Instance parente */
- GDalvikRegister *reg; /* Registre représenté */
+ GDalvikRegister *reg; /* Registre représenté */
};
@@ -76,7 +76,7 @@ struct _GDalvikRegisterOperand
/* Définition d'un opérande visant un registre Dalvik (classe) */
struct _GDalvikRegisterOperandClass
{
- GDalvikOperandClass parent; /* Classe parente */
+ GDalvikOperandClass parent; /* Classe parente */
};
@@ -1404,6 +1404,7 @@ static bool dalvik_read_fixed_operands(GArchInstruction *instr, const bin_t *dat
* len = taille totale des données à analyser. *
* endian = boutisme lié au binaire accompagnant. *
* model = type d'opérandes attendues. *
+* ... = éventuelles données complémentaires. *
* *
* Description : Procède à la lecture d'opérandes pour une instruction. *
* *