Resort and resize the altivec registers in the pcb. vrsave and vscr are both

32-bit registers via the PowerPC spec.

X-MFC-with:	r276634
MFC after:	2 weeks
This commit is contained in:
jhibbits 2015-01-03 21:08:27 +00:00
parent 30f6d6864b
commit d2477f8246

View File

@ -58,9 +58,9 @@ struct pcb {
stuff. */ stuff. */
struct vec { struct vec {
uint32_t vr[32][4]; uint32_t vr[32][4];
register_t vrsave; uint32_t spare[2];
register_t spare[2]; uint32_t vrsave;
register_t vscr; /* aligned at vector element 3 */ uint32_t vscr; /* aligned at vector element 3 */
} pcb_vec __aligned(16); /* Vector processor */ } pcb_vec __aligned(16); /* Vector processor */
unsigned int pcb_veccpu; /* which CPU had our vector unsigned int pcb_veccpu; /* which CPU had our vector
stuff. */ stuff. */