summaryrefslogtreecommitdiff
path: root/src/arch/instruction.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/instruction.c')
-rw-r--r--src/arch/instruction.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/arch/instruction.c b/src/arch/instruction.c
index 598da6d..67fd184 100644
--- a/src/arch/instruction.c
+++ b/src/arch/instruction.c
@@ -105,6 +105,8 @@ static void g_arch_instruction_init(GArchInstruction *instr)
{
DL_LIST_ITEM_INIT(&instr->flow);
+ instr->is_return = false;
+
}
@@ -475,6 +477,28 @@ InstructionLinkType g_arch_instruction_get_link(const GArchInstruction *instr, v
/******************************************************************************
* *
+* Paramètres : instr = instruction à consulter. *
+* status = statut de l'instruction vis à vis du flot. *
+* *
+* Description : Précise si l'instruction correspond à un retour de fonction. *
+* *
+* Retour : true (pour respecter le prototypage depuis les fichiers D). *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+bool g_arch_instruction_define_as_return(GArchInstruction *instr, bool status)
+{
+ instr->is_return = status;
+
+ return true;
+
+}
+
+
+/******************************************************************************
+* *
* Paramètres : instr = instruction à consulter. *
* *
* Description : Indique si l'instruction correspond à un retour de fonction. *
@@ -487,7 +511,7 @@ InstructionLinkType g_arch_instruction_get_link(const GArchInstruction *instr, v
bool g_arch_instruction_is_return(const GArchInstruction *instr)
{
- return instr->is_return(instr);
+ return instr->is_return;
}