summaryrefslogtreecommitdiff
path: root/src/arch/operand.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-19 20:00:40 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-19 20:00:40 (GMT)
commit12abead3f60d6f72c0d41672af87215dfc13c8fc (patch)
tree3fda90b6e1b439644a39730ae8935c74da1f2d44 /src/arch/operand.c
parent79ae70be75b534c18fbfce38294f5ba7feef0e11 (diff)
Deleted all references to any asm syntax.
Diffstat (limited to 'src/arch/operand.c')
-rw-r--r--src/arch/operand.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/arch/operand.c b/src/arch/operand.c
index 1d4b468..07a93ab 100644
--- a/src/arch/operand.c
+++ b/src/arch/operand.c
@@ -237,7 +237,6 @@ void g_arch_operand_set_alt_text(GArchOperand *operand, const char *text, Render
* *
* 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. *
* *
@@ -247,7 +246,7 @@ void g_arch_operand_set_alt_text(GArchOperand *operand, const char *text, Render
* *
******************************************************************************/
-void g_arch_operand_print(const GArchOperand *operand, GBufferLine *line, AsmSyntax syntax)
+void g_arch_operand_print(const GArchOperand *operand, GBufferLine *line)
{
size_t alt_len; /* Taille du texte alternatif */
@@ -263,7 +262,7 @@ void g_arch_operand_print(const GArchOperand *operand, GBufferLine *line, AsmSyn
}
else
- G_ARCH_OPERAND_GET_CLASS(operand)->print(operand, line, syntax);
+ G_ARCH_OPERAND_GET_CLASS(operand)->print(operand, line);
}