diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-18 18:01:29 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-18 18:01:29 +0000 |
commit | 2cfc5f17d366b801484b36b548708fe0f3552737 (patch) | |
tree | bf35a5924a55035f6a44089943a0b5dccae32d09 /exec-all.h | |
parent | d1b5c20dcde176df50f1955e498af252e87a3e9d (diff) |
Small cleanup of gen_intermediate_code(_internal), by Laurent Desnogues.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4891 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exec-all.h b/exec-all.h index 943297755a..5241abe5b3 100644 --- a/exec-all.h +++ b/exec-all.h @@ -60,8 +60,8 @@ typedef void (GenOpFunc3)(long, long, long); extern FILE *logfile; extern int loglevel; -int gen_intermediate_code(CPUState *env, struct TranslationBlock *tb); -int gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb); +void gen_intermediate_code(CPUState *env, struct TranslationBlock *tb); +void gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb); void gen_pc_load(CPUState *env, struct TranslationBlock *tb, unsigned long searched_pc, int pc_pos, void *puc); |