summaryrefslogtreecommitdiff
path: root/src/arch/instruction-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-10-29 11:55:02 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-10-29 11:55:02 (GMT)
commit945f58cb1e1b8b6dc444dd0668bd1a2986cd899e (patch)
tree1fc255ced81920e46036699cc55ffc9962807cc2 /src/arch/instruction-int.h
parent38e455ebbbbf90ddbf552f95a1dfb3c544907587 (diff)
Told GCC to pack enumerations to save memory space.
Diffstat (limited to 'src/arch/instruction-int.h')
-rw-r--r--src/arch/instruction-int.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/instruction-int.h b/src/arch/instruction-int.h
index e4d886b..f2964e6 100644
--- a/src/arch/instruction-int.h
+++ b/src/arch/instruction-int.h
@@ -57,7 +57,6 @@ struct _GArchInstruction
phys_t max_displayed_len; /* Quantité de code affichée */
- ArchInstrFlag flags; /* Informations complémentaires*/
const instr_hook_fc *hooks; /* Traitements complémentaires */
mrange_t range; /* Emplacement en mémoire */
@@ -74,6 +73,8 @@ struct _GArchInstruction
gint hold_link_access; /* Suivi des verrouillages */
#endif
+ ArchInstrFlag flags; /* Informations complémentaires*/
+
//get_instruction_rw_regs_fc get_rw_regs; /* Liste des registres liés */
//print_instruction_fc print; /* Imprime l'ensemble */
//get_instruction_keyword_fc get_key; /* Texte humain équivalent */