mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
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
This commit is contained in:
parent
d1b5c20dcd
commit
2cfc5f17d3
11 changed files with 59 additions and 72 deletions
|
@ -8453,7 +8453,7 @@ static void decode_opc (CPUState *env, DisasContext *ctx)
|
|||
}
|
||||
}
|
||||
|
||||
static inline int
|
||||
static inline void
|
||||
gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
|
||||
int search_pc)
|
||||
{
|
||||
|
@ -8598,18 +8598,16 @@ done_generating:
|
|||
fprintf(logfile, "---------------- %d %08x\n", ctx.bstate, ctx.hflags);
|
||||
}
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
|
||||
void gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
|
||||
{
|
||||
return gen_intermediate_code_internal(env, tb, 0);
|
||||
gen_intermediate_code_internal(env, tb, 0);
|
||||
}
|
||||
|
||||
int gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
|
||||
void gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
|
||||
{
|
||||
return gen_intermediate_code_internal(env, tb, 1);
|
||||
gen_intermediate_code_internal(env, tb, 1);
|
||||
}
|
||||
|
||||
void fpu_dump_state(CPUState *env, FILE *f,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue