Commit 2231ef1084f1522508880e99ba60647f8d312c74

Authored by aurel32
1 parent dadd71a7

target-ppc: fix type of spe_acc.

ACC is a 64-bit register and needs to be specified as such regardless of
the target.

Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6090 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-ppc/cpu.h
... ... @@ -602,7 +602,7 @@ struct CPUPPCState {
602 602 ppc_avr_t avr[32];
603 603 uint32_t vscr;
604 604 /* SPE registers */
605   - target_ulong spe_acc;
  605 + uint64_t spe_acc;
606 606 float_status spe_status;
607 607 uint32_t spe_fscr;
608 608  
... ...