diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-22 15:43:43 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-22 15:43:43 (GMT) | 
| commit | 7577eadd4e871d467f747c4927a1b1984d6a7606 (patch) | |
| tree | e72a2fd5c1619e60402a678b0559079ed267eab0 /src/arch/instruction.h | |
| parent | 33aa90b022e7d711a733ca7eb62c0b285f974317 (diff) | |
Extended the compiler to transform all the new ARMv7 encoding definitions.
Diffstat (limited to 'src/arch/instruction.h')
| -rw-r--r-- | src/arch/instruction.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h index 3d261a9..e902849 100644 --- a/src/arch/instruction.h +++ b/src/arch/instruction.h @@ -66,7 +66,7 @@ const char *g_arch_instruction_get_encoding(const GArchInstruction *);  void g_arch_instruction_set_encoding(GArchInstruction *, const char *);  /* Etend la désignation d'un nom d'instruction. */ -void g_arch_instruction_append_suffix(GArchInstruction *, const char *); +bool g_arch_instruction_extend_keyword(GArchInstruction *, const char *);  /* Drapeaux pour informations complémentaires */  typedef enum _ArchInstrFlag @@ -231,7 +231,7 @@ size_t g_arch_instruction_compute_group_index(GArchInstruction **, GArchInstruct  /* Fournit le nom humain de l'instruction manipulée. */ -const char *g_arch_instruction_get_keyword(const GArchInstruction *, AsmSyntax); +const char *g_arch_instruction_get_keyword(GArchInstruction *, AsmSyntax);  /* Indique si elle existe la quantité maximale de code affiché. */  phys_t g_arch_instruction_get_displayed_max_length(const GArchInstruction *);  | 
