diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-07-19 20:00:40 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-07-19 20:00:40 (GMT) |
commit | 12abead3f60d6f72c0d41672af87215dfc13c8fc (patch) | |
tree | 3fda90b6e1b439644a39730ae8935c74da1f2d44 /src/arch/operands | |
parent | 79ae70be75b534c18fbfce38294f5ba7feef0e11 (diff) |
Deleted all references to any asm syntax.
Diffstat (limited to 'src/arch/operands')
-rw-r--r-- | src/arch/operands/register.c | 7 |
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); } |