diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2022-08-17 21:37:24 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2022-08-17 21:37:24 (GMT) | 
| commit | 429b54556283116a29c5d699af0cf891bb1c1055 (patch) | |
| tree | a8f9063b9a9590d2960e9463c457bead29916445 /plugins/arm/v7/operands/shift.c | |
| parent | dbe336e27d5bcf2d913750576f868353ca4ba041 (diff) | |
Disable the extra data storage inside the GObject structure.
Diffstat (limited to 'plugins/arm/v7/operands/shift.c')
| -rw-r--r-- | plugins/arm/v7/operands/shift.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/arm/v7/operands/shift.c b/plugins/arm/v7/operands/shift.c index ccdfe5c..1e1a8ab 100644 --- a/plugins/arm/v7/operands/shift.c +++ b/plugins/arm/v7/operands/shift.c @@ -72,9 +72,9 @@ struct _GArmV7ShiftOperandClass   * Accès aux informations éventuellement déportées.   */ -#if __SIZEOF_INT__ == __SIZEOF_LONG__ +#if 1 //__SIZEOF_INT__ == __SIZEOF_LONG__ -#   define GET_ARMV7_SHIFT_OP_EXTRA(op) (a7shiftop_extra_data_t *)&op->extra +#   define GET_ARMV7_SHIFT_OP_EXTRA(op) ((a7shiftop_extra_data_t *)&((GArchOperand *)op)->extra)  #else @@ -561,11 +561,11 @@ static void g_armv7_shift_operand_update_inner_instances(GArmV7ShiftOperand *ope  static guint g_armv7_shift_operand_hash(const GArmV7ShiftOperand *operand, bool lock)  {      guint result;                           /* Valeur à retourner          */ -    lockable_obj_extra_t *extra;            /* Données insérées à consulter*/ +    a7shiftop_extra_data_t *extra;          /* Données insérées à consulter*/      GArchOperandClass *class;               /* Classe parente normalisée   */      a7shiftop_extra_data_t *op_extra;       /* Données internes à manipuler*/ -    extra = GET_GOBJECT_EXTRA(G_OBJECT(operand), lockable_obj_extra_t); +    extra = GET_ARMV7_SHIFT_OP_EXTRA(G_ARMV7_SHIFT_OPERAND(operand));      if (lock)          LOCK_GOBJECT_EXTRA(extra);  | 
