summaryrefslogtreecommitdiff
path: root/target-ppc
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-02-16 21:54:14 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-02-16 21:54:14 +0000
commitb324e814a9a7114ba2d753de133cdc75a88f9860 (patch)
tree0f4a4ba519528cb075e9c6363f57d482405abc5c /target-ppc
parentc69810559ba962ad5da4ae6b9069ee6159d2efd1 (diff)
downloadqemu-b324e814a9a7114ba2d753de133cdc75a88f9860.tar.gz
suppressed unused variables
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@613 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r--target-ppc/helper.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c
index 50c480e2b5..4e8206e728 100644
--- a/target-ppc/helper.c
+++ b/target-ppc/helper.c
@@ -32,10 +32,6 @@ extern FILE *logfile, *stderr;
void exit (int);
void abort (void);
-int phys_ram_size;
-int phys_ram_fd;
-uint8_t *phys_ram_base;
-
void cpu_loop_exit(void)
{
longjmp(env->jmp_env, 1);
@@ -487,7 +483,7 @@ void tlb_fill(unsigned long addr, int is_write, int flags, void *retaddr)
if (tb) {
/* the PC is inside the translated code. It means that we have
a virtual CPU fault */
- cpu_restore_state(tb, env, pc);
+ cpu_restore_state(tb, env, pc, NULL);
}
}
do_queue_exception_err(env->exception_index, env->error_code);