diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-14 19:55:54 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-14 19:55:54 +0000 |
commit | e2be8d8d7ed7ca8bd3fdf7f6207cabd9cfb32b8e (patch) | |
tree | e01c58797188832f78fbdc41275c0456dde7066e /target-ppc/helper.c | |
parent | 064f6633d6983cc1bc443276088d088ec237e53b (diff) |
PPC: convert effective address computation to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5490 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/helper.c')
-rw-r--r-- | target-ppc/helper.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index c6ac6cb0e0..1dac1511d4 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2899,19 +2899,6 @@ void ppc_hw_interrupt (CPUPPCState *env) } #endif /* !CONFIG_USER_ONLY */ -void cpu_dump_EA (target_ulong EA) -{ - FILE *f; - - if (logfile) { - f = logfile; - } else { - f = stdout; - return; - } - fprintf(f, "Memory access at address " ADDRX "\n", EA); -} - void cpu_dump_rfi (target_ulong RA, target_ulong msr) { FILE *f; |