diff options
Diffstat (limited to 'target-ppc/cpu.h')
-rw-r--r-- | target-ppc/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index dafe7f3..006f58d 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -611,8 +611,10 @@ struct CPUPPCState { uint32_t vscr; /* SPE registers */ uint64_t spe_acc; - float_status spe_status; uint32_t spe_fscr; + /* SPE and Altivec can share a status since they will never be used + * simultaneously */ + float_status vec_status; /* Internal devices resources */ /* Time base and decrementer */ |