diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-01 00:53:59 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-01 00:53:59 +0000 |
commit | 8d71247eaad960d062d34c882e7af7391f74de81 (patch) | |
tree | de6a1b640273800068ce33c20b35cdbfa9735b1c | |
parent | 269f3e95e8478bfa32ccfd96488341a90ec5e187 (diff) | |
download | hqemu-8d71247eaad960d062d34c882e7af7391f74de81.zip hqemu-8d71247eaad960d062d34c882e7af7391f74de81.tar.gz |
target-ppc: xer access prototypes no more used & implemented
Revision 5500 of the qemu repository removed all code using
ppc_load_xer & ppc_store_xer as well as their implementation.
Another patch fixes it's usage in kvm-userspace for powerpc, but I think
that header can now be cleaned up, therefore this patch to qemu-devel.
Signed-off-by: Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5589 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | target-ppc/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index ef7a455..889396e 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -724,8 +724,6 @@ target_ulong do_load_sr (CPUPPCState *env, int srnum); #endif void do_store_sr (CPUPPCState *env, int srnum, target_ulong value); #endif /* !defined(CONFIG_USER_ONLY) */ -target_ulong ppc_load_xer (CPUPPCState *env); -void ppc_store_xer (CPUPPCState *env, target_ulong value); void ppc_store_msr (CPUPPCState *env, target_ulong value); void cpu_ppc_reset (void *opaque); |