diff options
Diffstat (limited to 'target-ia64/cpu.h')
-rw-r--r-- | target-ia64/cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target-ia64/cpu.h b/target-ia64/cpu.h index ff43d65d3..9bad6f668 100644 --- a/target-ia64/cpu.h +++ b/target-ia64/cpu.h @@ -73,4 +73,12 @@ void flush_icache_range(unsigned long start, unsigned long stop); void tcg_dump_info(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); +static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, + target_ulong *cs_base, int *flags) +{ + *pc = 0; + *cs_base = 0; + *flags = 0; +} + #endif |