Fix 32-bit overflow in parallels image support
[qemu-kvm/fedora.git] / target-ia64 / fake-exec.c
blob8d6ded0a71b7fabb4240b74ac1ce5f3e7efa5ac7
1 /*
2 * fake-exec.c for ia64.
4 * This is a file for stub functions so that compilation is possible
5 * when TCG CPU emulation is disabled during compilation.
7 * Copyright 2007 IBM Corporation.
8 * Added by & Authors:
9 * Jerone Young <jyoung5@us.ibm.com>
11 * Copyright 2008 Intel Corporation.
12 * Added by Xiantao Zhang <xiantao.zhang@intel.com>
14 * This work is licensed under the GNU GPL licence version 2 or later.
17 #include <stdio.h>
19 #include "cpu.h"
20 #include "exec-all.h"
22 int code_copy_enabled = 0;
24 void cpu_gen_init(void)
28 unsigned long code_gen_max_block_size(void)
30 return 32;
33 int cpu_ia64_gen_code(CPUState *env, TranslationBlock *tb, int *gen_code_size_ptr)
35 return 0;
38 void tcg_dump_info(FILE *f,
39 int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
41 return;
44 int cpu_restore_state(TranslationBlock *tb,
45 CPUState *env, unsigned long searched_pc,
46 void *puc)
49 return 0;