Remove fpe_sp_state as we don't support fpe.

This commit is contained in:
Andrew Turner 2013-08-17 14:53:53 +00:00
parent c6af85cce2
commit 65b412607b
2 changed files with 0 additions and 13 deletions

View File

@ -66,19 +66,10 @@ typedef struct fp_extended_precision fp_reg_t;
* This needs to move and be hidden from userland.
*/
#ifdef ARM_VFP_SUPPORT
struct vfp_state {
u_int64_t reg[32];
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

View File

@ -80,12 +80,8 @@ struct pcb {
#define PCB_NOALIGNFLT 0x00000002
caddr_t pcb_onfault; /* On fault handler */
struct pcb_arm32 un_32;
#ifdef ARM_VFP_SUPPORT
struct vfp_state pcb_vfpstate; /* VP/NEON state */
u_int pcb_vfpcpu; /* VP/NEON last cpu */
#else
struct fpe_sp_state pcb_fpstate; /* Floating Point state */
#endif
};
/*