summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/instruction.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/arm/v7/instruction.c')
-rw-r--r--plugins/arm/v7/instruction.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/arm/v7/instruction.c b/plugins/arm/v7/instruction.c
index ee75efd..97adddd 100644
--- a/plugins/arm/v7/instruction.c
+++ b/plugins/arm/v7/instruction.c
@@ -76,7 +76,7 @@ static void g_armv7_instruction_finalize(GArmV7Instruction *);
static const char *g_armv7_instruction_get_encoding(const GArmV7Instruction *);
/* Fournit le nom humain de l'instruction manipulée. */
-static const char *g_armv7_instruction_get_keyword(const GArmV7Instruction *, AsmSyntax);
+static const char *g_armv7_instruction_get_keyword(const GArmV7Instruction *);
/* Complète un désassemblage accompli pour une instruction. */
static void g_armv7_instruction_call_hook(GArmV7Instruction *, InstrProcessHook, GArchProcessor *, GProcContext *, GExeFormat *);
@@ -281,8 +281,7 @@ void g_armv7_instruction_set_encoding(GArmV7Instruction *instr, const char *enco
/******************************************************************************
* *
-* Paramètres : instr = instruction d'assemblage à consulter. *
-* syntax = type de représentation demandée. *
+* Paramètres : instr = instruction d'assemblage à consulter. *
* *
* Description : Fournit le nom humain de l'instruction manipulée. *
* *
@@ -292,7 +291,7 @@ void g_armv7_instruction_set_encoding(GArmV7Instruction *instr, const char *enco
* *
******************************************************************************/
-static const char *g_armv7_instruction_get_keyword(const GArmV7Instruction *instr, AsmSyntax syntax)
+static const char *g_armv7_instruction_get_keyword(const GArmV7Instruction *instr)
{
const char *result; /* Désignation à retourner */
GArmInstruction *parent; /* Autre forme de l'instance */