summaryrefslogtreecommitdiff
path: root/src/arch/operands/register.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/operands/register.c')
-rw-r--r--src/arch/operands/register.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/arch/operands/register.c b/src/arch/operands/register.c
index e890fd6..508886b 100644
--- a/src/arch/operands/register.c
+++ b/src/arch/operands/register.c
@@ -48,7 +48,7 @@ static void g_register_operand_finalize(GRegisterOperand *);
static int g_register_operand_compare(const GRegisterOperand *, const GRegisterOperand *);
/* Traduit un opérande en version humainement lisible. */
-static void g_register_operand_print(const GRegisterOperand *, GBufferLine *, AsmSyntax);
+static void g_register_operand_print(const GRegisterOperand *, GBufferLine *);
@@ -195,7 +195,6 @@ static int g_register_operand_compare(const GRegisterOperand *a, const GRegister
* *
* Paramètres : operand = opérande à traiter. *
* line = ligne tampon où imprimer l'opérande donné. *
-* syntax = type de représentation demandée. *
* *
* Description : Traduit un opérande en version humainement lisible. *
* *
@@ -205,9 +204,9 @@ static int g_register_operand_compare(const GRegisterOperand *a, const GRegister
* *
******************************************************************************/
-static void g_register_operand_print(const GRegisterOperand *operand, GBufferLine *line, AsmSyntax syntax)
+static void g_register_operand_print(const GRegisterOperand *operand, GBufferLine *line)
{
- g_arch_register_print(operand->reg, line, syntax);
+ g_arch_register_print(operand->reg, line);
}