diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-12-08 16:46:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-12-08 16:46:49 (GMT) |
commit | 4dd8356e19b9e58990b2f3e0c4110aa2fe9642d1 (patch) | |
tree | 26ede3d87b05f0baeb915066cb01eee60a83f2e3 /src/arch | |
parent | 2a7e284702a9cf3cfd060fe50e7ef96621633aa4 (diff) |
Cut instructions flow into blocks (to be continued).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@297 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/instruction.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/instruction.c b/src/arch/instruction.c index aa90e70..a45e8fa 100644 --- a/src/arch/instruction.c +++ b/src/arch/instruction.c @@ -284,6 +284,11 @@ void g_arch_instruction_get_rw_registers(const GArchInstruction *instr, GArchReg { size_t i; /* Boucle de parcours */ + *rregs = NULL; + *rcount = 0; + *wregs = NULL; + *wcount = 0; + instr->get_rw_regs(instr, rregs, rcount, wregs, wcount); for (i = 0; i < *rcount; i++) |