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.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/arch/instruction.c b/src/arch/instruction.c
index 8bc317b..16e5c81 100644
--- a/src/arch/instruction.c
+++ b/src/arch/instruction.c
@@ -196,54 +196,6 @@ void g_arch_instruction_get_location(GArchInstruction *instr, off_t *offset, off
* Paramètres : instr = instance à mettre à jour. *
* opererand = instruction à venir associer. *
* *
-* Description : Attache un seul opérande à un instruction. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-void g_arch_instruction_attach_one_operand(GArchInstruction *instr, GArchOperand *operand)
-{
- instr->operands = (GArchOperand **)calloc(1, sizeof(GArchOperand *));
- instr->operands_count = 1;
-
- instr->operands[0] = operand;
-
-}
-
-
-/******************************************************************************
-* *
-* Paramètres : instr = instance à mettre à jour. *
-* operand1 = première instruction à venir associer. *
-* operand2 = seconde instruction à venir associer. *
-* *
-* Description : Attache deux opérandes à un instruction. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-void g_arch_instruction_attach_two_operands(GArchInstruction *instr, GArchOperand *operand1, GArchOperand *operand2)
-{
- instr->operands = (GArchOperand **)calloc(2, sizeof(GArchOperand *));
- instr->operands_count = 2;
-
- instr->operands[0] = operand1;
- instr->operands[1] = operand2;
-
-}
-
-
-/******************************************************************************
-* *
-* Paramètres : instr = instance à mettre à jour. *
-* opererand = instruction à venir associer. *
-* *
* Description : Attache un opérande supplémentaire à une instruction. *
* *
* Retour : - *