diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-12-12 18:05:45 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-12-12 18:05:45 (GMT) | 
| commit | dcc0438ff24efd5958b8d46940eb395ff2b7ed77 (patch) | |
| tree | a977fdbd43abd34bbea73f1fd1aef89f364230f2 /src/arch/link.c | |
| parent | b3efd0bbc506e701ea9872f50b8b4db974f35954 (diff) | |
Applied some code refactoring to remove usages of GBinFormat in favor of GExeFormat.
Diffstat (limited to 'src/arch/link.c')
| -rw-r--r-- | src/arch/link.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/arch/link.c b/src/arch/link.c index b6d69e0..4519bc5 100644 --- a/src/arch/link.c +++ b/src/arch/link.c @@ -46,7 +46,7 @@  *                                                                             *  ******************************************************************************/ -void handle_jump_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GBinFormat *format) +void handle_jump_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GExeFormat *format)  {      GArchOperand *op;                       /* Opérande numérique en place */      virt_t virt;                            /* Adresse virtuelle           */ @@ -89,7 +89,7 @@ void handle_jump_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcCon  *                                                                             *  ******************************************************************************/ -void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GBinFormat *format, size_t index) +void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GExeFormat *format, size_t index)  {      GArchOperand *op;                       /* Opérande numérique en place */      virt_t virt;                            /* Adresse virtuelle           */ @@ -154,7 +154,7 @@ void handle_branch_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcC  *                                                                             *  ******************************************************************************/ -void handle_call_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GBinFormat *format) +void handle_call_as_link(GArchInstruction *instr, GArchProcessor *proc, GProcContext *context, GExeFormat *format)  {      GArchOperand *op;                       /* Opérande numérique en place */      virt_t virt;                            /* Adresse virtuelle           */ | 
