summaryrefslogtreecommitdiff
path: root/src/arch/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/instruction.h')
-rw-r--r--src/arch/instruction.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h
index bddc2bf..54778b5 100644
--- a/src/arch/instruction.h
+++ b/src/arch/instruction.h
@@ -230,9 +230,6 @@ GBufferLine *g_arch_instruction_print(const GArchInstruction *, GCodeBuffer *, M
/* -------------------- TRAITEMENT DES INSTRUCTIONS PAR ENSEMBLE -------------------- */
-/* Renvoie vers la dernière instruction d'une série. */
-GArchInstruction *g_arch_instruction_find_last(const GArchInstruction *);
-
/* Ajoute une instruction à un ensemble existant. */
void g_arch_instruction_add_to_list(GArchInstruction **, GArchInstruction *);
@@ -245,9 +242,6 @@ GArchInstruction *g_arch_instruction_get_prev_iter(const GArchInstruction *, con
/* Fournit l'élement suivant un autre pour un parcours. */
GArchInstruction *g_arch_instruction_get_next_iter(const GArchInstruction *, const GArchInstruction *, vmpa_t);
-/* Recherche une instruction d'après son emplacement mémoire. */
-GArchInstruction *g_arch_instruction_find_by_range(GArchInstruction *, const mrange_t *);
-
/* Recherche une instruction d'après son adresse. */
GArchInstruction *g_arch_instruction_find_by_address(GArchInstruction *, const vmpa2t *, bool) __attribute__ ((deprecated));
/* -> g_arch_processor_find_instr_by_address */