diff options
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r-- | src/arch/operand-int.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h index 3d3ffc9..b2f5eda 100644 --- a/src/arch/operand-int.h +++ b/src/arch/operand-int.h @@ -31,7 +31,7 @@ /* Compare un opérande avec un autre. */ -typedef bool (* operand_compare_fc) (const GArchOperand *, const GArchOperand *); +typedef int (* operand_compare_fc) (const GArchOperand * const *, const GArchOperand * const *); /* Traduit un opérande en version humainement lisible. */ typedef void (* operand_print_fc) (const GArchOperand *, GBufferLine *, AsmSyntax); @@ -57,7 +57,6 @@ struct _GArchOperandClass GObjectClass parent; /* A laisser en premier */ init_shared_fc init; /* Mise en place via interface */ - compare_shared_info_fc cmp_info; /* Comparaison des détails */ operand_compare_fc compare; /* Comparaison d'opérandes */ operand_print_fc print; /* Texte humain équivalent */ |