Remove fpe_sp_state as we don't support fpe.
This commit is contained in:
parent
c6af85cce2
commit
65b412607b
@ -66,19 +66,10 @@ typedef struct fp_extended_precision fp_reg_t;
|
|||||||
* This needs to move and be hidden from userland.
|
* This needs to move and be hidden from userland.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef ARM_VFP_SUPPORT
|
|
||||||
struct vfp_state {
|
struct vfp_state {
|
||||||
u_int64_t reg[32];
|
u_int64_t reg[32];
|
||||||
u_int32_t fpscr;
|
u_int32_t fpscr;
|
||||||
};
|
};
|
||||||
#else
|
|
||||||
struct fpe_sp_state {
|
|
||||||
unsigned int fp_flags;
|
|
||||||
unsigned int fp_sr;
|
|
||||||
unsigned int fp_cr;
|
|
||||||
fp_reg_t fp_registers[16];
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Type for a saved FP context, if we want to translate the context to a
|
* Type for a saved FP context, if we want to translate the context to a
|
||||||
|
@ -80,12 +80,8 @@ struct pcb {
|
|||||||
#define PCB_NOALIGNFLT 0x00000002
|
#define PCB_NOALIGNFLT 0x00000002
|
||||||
caddr_t pcb_onfault; /* On fault handler */
|
caddr_t pcb_onfault; /* On fault handler */
|
||||||
struct pcb_arm32 un_32;
|
struct pcb_arm32 un_32;
|
||||||
#ifdef ARM_VFP_SUPPORT
|
|
||||||
struct vfp_state pcb_vfpstate; /* VP/NEON state */
|
struct vfp_state pcb_vfpstate; /* VP/NEON state */
|
||||||
u_int pcb_vfpcpu; /* VP/NEON last cpu */
|
u_int pcb_vfpcpu; /* VP/NEON last cpu */
|
||||||
#else
|
|
||||||
struct fpe_sp_state pcb_fpstate; /* Floating Point state */
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user