summaryrefslogtreecommitdiff
path: root/src/arch/operand-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-02-04 12:23:04 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-02-04 12:23:04 (GMT)
commitec0f07c0b9468d6798befd887b02d9668faf806b (patch)
treef8b243f9b08006a4206b29b9af5b73a5d25361c7 /src/arch/operand-int.h
parent296b4ed15fd074f80266e1d22ef4ade7ee11905e (diff)
Created a new interface for renamed operands.
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r--src/arch/operand-int.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h
index bd12904..dda4a11 100644
--- a/src/arch/operand-int.h
+++ b/src/arch/operand-int.h
@@ -45,22 +45,11 @@ typedef bool (* unserialize_operand_fc) (GArchOperand *, GAsmStorage *, GBinForm
typedef bool (* serialize_operand_fc) (const GArchOperand *, GAsmStorage *, packed_buffer *);
-/* Adjonction de rendu alternatif */
-typedef struct _alt_rendering
-{
- RenderingTagType tag; /* Type de rendu */
- char text[0]; /* Texte alternatif */
-
-} alt_rendering;
-
-
/* Définition générique d'un opérande d'architecture (instance) */
struct _GArchOperand
{
GObject parent; /* A laisser en premier */
- alt_rendering *alt_info; /* Autre rendu éventuel */
-
};