diff options
author | Avi Kivity <avi@redhat.com> | 2008-11-23 17:48:54 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-11-23 17:48:54 +0200 |
commit | d3088c02f83b8ea4091bf705225549cf79bbbdd0 (patch) | |
tree | 29c240cb576f80afd5988f328b390c806cd53390 /target-ia64 | |
parent | kvm: testsuite: test simultaneous irq injection (diff) | |
parent | target-ppc: convert SPE FP ops to TCG (diff) | |
download | qemu-kvm-d3088c02f83b8ea4091bf705225549cf79bbbdd0.tar.gz qemu-kvm-d3088c02f83b8ea4091bf705225549cf79bbbdd0.tar.bz2 qemu-kvm-d3088c02f83b8ea4091bf705225549cf79bbbdd0.zip |
Merge branch 'qemu-cvs'
Conflicts:
qemu/block-raw-posix.c
qemu/configure
qemu/cpu-defs.h
qemu/cpu-exec.c
qemu/exec.c
qemu/gdbstub.c
qemu/loader.c
qemu/osdep.c
qemu/sysemu.h
qemu/target-i386/helper.c
qemu/target-ppc/cpu.h
qemu/target-ppc/helper.c
qemu/usb-linux.c
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'target-ia64')
-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 |