svn commit: r254452 - head/sys/arm/include

Andrew Turner andrew at FreeBSD.org
Sat Aug 17 14:53:54 UTC 2013


Author: andrew
Date: Sat Aug 17 14:53:53 2013
New Revision: 254452
URL: http://svnweb.freebsd.org/changeset/base/254452

Log:
  Remove fpe_sp_state as we don't support fpe.

Modified:
  head/sys/arm/include/fp.h
  head/sys/arm/include/pcb.h

Modified: head/sys/arm/include/fp.h
==============================================================================
--- head/sys/arm/include/fp.h	Sat Aug 17 14:52:19 2013	(r254451)
+++ head/sys/arm/include/fp.h	Sat Aug 17 14:53:53 2013	(r254452)
@@ -66,19 +66,10 @@ typedef struct fp_extended_precision fp_
  * 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

Modified: head/sys/arm/include/pcb.h
==============================================================================
--- head/sys/arm/include/pcb.h	Sat Aug 17 14:52:19 2013	(r254451)
+++ head/sys/arm/include/pcb.h	Sat Aug 17 14:53:53 2013	(r254452)
@@ -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
 };
 
 /*


More information about the svn-src-head mailing list